From 38b3782c1d8ba99d098ee2654b73a41cbe99ce47 Mon Sep 17 00:00:00 2001 From: Casper Iversen <53900565+casperiv0@users.noreply.github.com> Date: Thu, 19 Oct 2023 08:46:47 +0200 Subject: [PATCH] chore: update react aria (#1847) --- .eslintrc | 3 +- apps/client/package.json | 42 +- .../src/components/auth/api-verification.tsx | 1 - .../dispatch/modals/tones-modal.tsx | 4 +- .../modals/NameSearchModal/speech-alert.tsx | 2 +- .../components/modal-buttons/modal-button.tsx | 5 +- .../src/components/shared/VersionDisplay.tsx | 2 +- .../src/components/shared/image-wrapper.tsx | 2 +- .../hooks/realtime/use-active-dispatchers.ts | 2 +- apps/client/src/hooks/use-invalidate-query.ts | 2 +- package.json | 1 + packages/ui/package.json | 64 +- packages/ui/src/components/button/button.tsx | 2 +- .../components/fields/date-picker-field.tsx | 2 +- .../ui/src/components/inputs/checkbox.tsx | 2 +- packages/ui/src/components/inputs/input.tsx | 2 +- .../ui/src/components/inputs/textarea.tsx | 2 +- .../components/multi-form/multi-form-step.tsx | 2 +- pnpm-lock.yaml | 2273 +++++++++-------- 19 files changed, 1288 insertions(+), 1127 deletions(-) diff --git a/.eslintrc b/.eslintrc index d13c83f85..cf7fd82e3 100644 --- a/.eslintrc +++ b/.eslintrc @@ -8,7 +8,8 @@ "extends": [ "@casperiv/eslint-config", "@casperiv/eslint-config-react", - "@casperiv/eslint-config-next" + "@casperiv/eslint-config-next", + "plugin:deprecation/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { diff --git a/apps/client/package.json b/apps/client/package.json index 184e279f6..33cba2061 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -25,12 +25,12 @@ "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toolbar": "^1.0.4", "@radix-ui/react-tooltip": "^1.0.7", - "@react-aria/label": "^3.7.1", + "@react-aria/label": "^3.7.2", "@react-aria/ssr": "^3.8.0", "@react-types/shared": "^3.21.0", - "@sentry/browser": "^7.74.0", - "@sentry/nextjs": "^7.74.0", - "@sentry/tracing": "^7.74.0", + "@sentry/browser": "^7.74.1", + "@sentry/nextjs": "^7.74.1", + "@sentry/tracing": "^7.74.1", "@snailycad/audit-logger": "workspace:*", "@snailycad/config": "^1.74.0", "@snailycad/permissions": "workspace:*", @@ -39,30 +39,30 @@ "@snailycad/ui": "workspace:*", "@snailycad/utils": "^1.74.0", "@tailwindcss/typography": "^0.5.10", - "@tanstack/react-query": "^4.36.1", + "@tanstack/react-query": "^5.0.0", "@tanstack/react-table": "8.10.7", - "@types/color": "^3.0.4", - "@types/connect": "^3.4.36", - "@types/is-hotkey": "^0.1.7", - "@types/leaflet": "^1.9.6", - "@types/nprogress": "^0.2.1", - "@types/react": "^18.2.28", - "@types/react-dom": "^18.2.13", - "@types/sortablejs": "^1.15.3", - "@types/uuid": "^9.0.5", + "@types/color": "^3.0.5", + "@types/connect": "^3.4.37", + "@types/is-hotkey": "^0.1.8", + "@types/leaflet": "^1.9.7", + "@types/nprogress": "^0.2.2", + "@types/react": "^18.2.29", + "@types/react-dom": "^18.2.14", + "@types/sortablejs": "^1.15.4", + "@types/uuid": "^9.0.6", "autoprefixer": "^10.4.16", "axios": "^1.5.1", "bignumber.js": "^9.1.2", "color": "^4.2.3", "date-fns": "^2.30.0", - "eslint-config-next": "^13.5.4", + "eslint-config-next": "^13.5.6", "formik": "^2.4.5", "hex-color-regex": "^1.1.0", "is-hotkey": "^0.2.0", "leaflet": "^1.9.4", "mdast-util-find-and-replace": "^3.0.1", - "next": "13.5.4", - "next-intl": "2.20.2", + "next": "13.5.6", + "next-intl": "2.21.0", "nookies": "^2.5.2", "nprogress": "^0.2.0", "pretty-bytes": "^6.1.1", @@ -71,7 +71,7 @@ "react-colorful": "^5.6.1", "react-cool-onclickoutside": "^1.7.0", "react-cropper": "^2.3.3", - "react-diff-viewer-continued": "^3.2.6", + "react-diff-viewer-continued": "^3.3.1", "react-digit-input": "^2.1.0", "react-dom": "18.2.0", "react-google-recaptcha-v3": "^1.10.1", @@ -91,7 +91,7 @@ "socket.io-client": "^4.7.2", "sortablejs": "^1.15.0", "storage-factory": "^0.2.1", - "use-intl": "^2.20.2", + "use-intl": "^2.21.0", "uuid": "^9.0.1", "zod": "3.22.4", "zustand": "^4.4.3" @@ -99,10 +99,10 @@ "devDependencies": { "dotenv": "^16.3.1", "postcss": "^8.4.31", - "sass": "^1.69.3", + "sass": "^1.69.4", "tailwindcss": "^3.3.3", "typescript": "^5.2.2", - "vite": "^4.4.11", + "vite": "^4.5.0", "vitest": "^0.34.6" } } diff --git a/apps/client/src/components/auth/api-verification.tsx b/apps/client/src/components/auth/api-verification.tsx index af300a671..95768a1f7 100644 --- a/apps/client/src/components/auth/api-verification.tsx +++ b/apps/client/src/components/auth/api-verification.tsx @@ -16,7 +16,6 @@ export function ApiVerification(props: Props) { const { error } = useQuery({ refetchOnWindowFocus: false, - keepPreviousData: true, queryKey: ["api-verification"], retry: 0, queryFn: async () => { diff --git a/apps/client/src/components/dispatch/modals/tones-modal.tsx b/apps/client/src/components/dispatch/modals/tones-modal.tsx index cb7dc704c..2994c05cc 100644 --- a/apps/client/src/components/dispatch/modals/tones-modal.tsx +++ b/apps/client/src/components/dispatch/modals/tones-modal.tsx @@ -46,7 +46,7 @@ export function TonesModal({ types }: Props) { }); helpers.resetForm(); - await queryClient.resetQueries(["active-tones"]); + await queryClient.resetQueries({ queryKey: ["active-tones"] }); } } @@ -57,7 +57,7 @@ export function TonesModal({ types }: Props) { }); if (json) { - await queryClient.resetQueries(["active-tones"]); + await queryClient.resetQueries({ queryKey: ["active-tones"] }); resetForm(); toastMessage({ diff --git a/apps/client/src/components/leo/modals/NameSearchModal/speech-alert.tsx b/apps/client/src/components/leo/modals/NameSearchModal/speech-alert.tsx index e4709a2f2..d8ec66978 100644 --- a/apps/client/src/components/leo/modals/NameSearchModal/speech-alert.tsx +++ b/apps/client/src/components/leo/modals/NameSearchModal/speech-alert.tsx @@ -43,5 +43,5 @@ export function SpeechAlert(props: SpeechAlertProps) { speaked.current = true; }, [props]); // eslint-disable-line react-hooks/exhaustive-deps - return props.children as JSX.Element; + return props.children as React.JSX.Element; } diff --git a/apps/client/src/components/modal-buttons/modal-button.tsx b/apps/client/src/components/modal-buttons/modal-button.tsx index 57f3d714e..768012095 100644 --- a/apps/client/src/components/modal-buttons/modal-button.tsx +++ b/apps/client/src/components/modal-buttons/modal-button.tsx @@ -9,7 +9,10 @@ import type { EmsFdDeputy } from "@snailycad/types"; import type { ActiveOfficer } from "state/leo-state"; import { useAuth } from "context/AuthContext"; -type ButtonProps = Pick; +type ButtonProps = Pick< + React.JSX.IntrinsicElements["button"], + "name" | "type" | "title" | "disabled" +>; interface Props extends ButtonProps { button: ModalButton; unit?: ActiveOfficer | EmsFdDeputy | null; diff --git a/apps/client/src/components/shared/VersionDisplay.tsx b/apps/client/src/components/shared/VersionDisplay.tsx index 76d92ee10..5710d775f 100644 --- a/apps/client/src/components/shared/VersionDisplay.tsx +++ b/apps/client/src/components/shared/VersionDisplay.tsx @@ -21,7 +21,7 @@ export function VersionDisplay({ cad }: Props) { ); } -function Link(props: JSX.IntrinsicElements["a"]) { +function Link(props: React.JSX.IntrinsicElements["a"]) { return ( setHasError(true)} />; diff --git a/apps/client/src/hooks/realtime/use-active-dispatchers.ts b/apps/client/src/hooks/realtime/use-active-dispatchers.ts index 08721b5ee..b48b5c83d 100644 --- a/apps/client/src/hooks/realtime/use-active-dispatchers.ts +++ b/apps/client/src/hooks/realtime/use-active-dispatchers.ts @@ -46,7 +46,7 @@ export function useActiveDispatchers() { useListener( { eventName: SocketEvents.UpdateDispatchersState, checkHasListeners: true }, async () => { - await queryClient.resetQueries(["/dispatch"]); + await queryClient.resetQueries({ queryKey: ["/dispatch"] }); }, ); diff --git a/apps/client/src/hooks/use-invalidate-query.ts b/apps/client/src/hooks/use-invalidate-query.ts index f67340d92..3060a56c1 100644 --- a/apps/client/src/hooks/use-invalidate-query.ts +++ b/apps/client/src/hooks/use-invalidate-query.ts @@ -11,7 +11,7 @@ export function useInvalidateQuery(queryKeyParts: T) { const query = queries.find((q) => queryKeyParts.every((k) => q.queryKey.includes(k))); async function invalidateQuery() { - await queryClient.invalidateQueries(query?.queryKey); + await queryClient.invalidateQueries({ queryKey: query?.queryKey }); return queryKeyParts; } diff --git a/package.json b/package.json index 756579e8c..c5b3c0a7e 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "@casperiv/eslint-config-next": "8.0.0", "@casperiv/eslint-config-react": "8.0.0", "eslint": "8.51.0", + "eslint-plugin-deprecation": "^2.0.0", "lerna": "^7.3.1", "lint-staged": "^15.0.1" }, diff --git a/packages/ui/package.json b/packages/ui/package.json index 5d2113fbe..623661b5d 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -18,22 +18,22 @@ "prepublish": "pnpm build" }, "devDependencies": { - "@storybook/addon-essentials": "^7.4.6", - "@storybook/addon-interactions": "^7.4.6", - "@storybook/addon-links": "^7.4.6", + "@storybook/addon-essentials": "^7.5.0", + "@storybook/addon-interactions": "^7.5.0", + "@storybook/addon-links": "^7.5.0", "@storybook/addon-styling": "^1.3.7", - "@storybook/blocks": "^7.4.6", - "@storybook/react": "^7.4.6", - "@storybook/react-vite": "^7.4.6", + "@storybook/blocks": "^7.5.0", + "@storybook/react": "^7.5.0", + "@storybook/react-vite": "^7.5.0", "@storybook/testing-library": "^0.2.2", "autoprefixer": "^10.4.16", "postcss": "^8.4.31", "prop-types": "^15.8.1", - "storybook": "^7.4.6", + "storybook": "^7.5.0", "tailwindcss": "^3.3.3", "tsup": "6.6.2", "typescript": "^5.2.2", - "vite": "^4.4.11" + "vite": "^4.5.0" }, "tsup": { "entry": [ @@ -61,26 +61,26 @@ "@radix-ui/react-dropdown-menu": "^2.0.6", "@radix-ui/react-hover-card": "^1.0.7", "@radix-ui/react-tabs": "^1.0.4", - "@react-aria/breadcrumbs": "^3.5.6", - "@react-aria/button": "^3.8.3", - "@react-aria/calendar": "^3.5.1", - "@react-aria/checkbox": "^3.11.1", - "@react-aria/combobox": "^3.7.0", - "@react-aria/datepicker": "^3.8.0", - "@react-aria/dialog": "^3.5.6", - "@react-aria/focus": "^3.14.2", - "@react-aria/i18n": "^3.8.3", - "@react-aria/interactions": "^3.19.0", - "@react-aria/label": "^3.7.1", - "@react-aria/listbox": "^3.11.0", - "@react-aria/menu": "^3.11.0", - "@react-aria/overlays": "^3.18.0", - "@react-aria/progress": "^3.4.6", - "@react-aria/radio": "^3.8.1", - "@react-aria/switch": "^3.5.5", - "@react-aria/textfield": "^3.12.1", - "@react-aria/utils": "^3.21.0", - "@react-aria/visually-hidden": "^3.8.5", + "@react-aria/breadcrumbs": "^3.5.7", + "@react-aria/button": "^3.8.4", + "@react-aria/calendar": "^3.5.2", + "@react-aria/checkbox": "^3.11.2", + "@react-aria/combobox": "^3.7.1", + "@react-aria/datepicker": "^3.8.1", + "@react-aria/dialog": "^3.5.7", + "@react-aria/focus": "^3.14.3", + "@react-aria/i18n": "^3.8.4", + "@react-aria/interactions": "^3.19.1", + "@react-aria/label": "^3.7.2", + "@react-aria/listbox": "^3.11.1", + "@react-aria/menu": "^3.11.1", + "@react-aria/overlays": "^3.18.1", + "@react-aria/progress": "^3.4.7", + "@react-aria/radio": "^3.8.2", + "@react-aria/switch": "^3.5.6", + "@react-aria/textfield": "^3.12.2", + "@react-aria/utils": "^3.21.1", + "@react-aria/visually-hidden": "^3.8.6", "@react-stately/calendar": "^3.4.1", "@react-stately/collections": "^3.10.2", "@react-stately/combobox": "^3.7.1", @@ -98,8 +98,8 @@ "@snailycad/config": "^1.74.0", "@snailycad/types": "workspace:*", "@snailycad/utils": "^1.74.0", - "@types/react": "^18.2.28", - "@types/react-dom": "^18.2.13", + "@types/react": "^18.2.29", + "@types/react-dom": "^18.2.14", "class-variance-authority": "^0.7.0", "formik": "^2.4.5", "mxcn": "^2.0.0", @@ -114,10 +114,10 @@ "peerDependencies": { "date-fns": ">=2.30.0", "next": "*", - "next-intl": ">=2.20.2", + "next-intl": ">=2.21.0", "react": ">=18.2.0", "react-dom": ">=18.2.0", - "use-intl": ">=2.20.2" + "use-intl": ">=2.21.0" }, "sideEffects": false } diff --git a/packages/ui/src/components/button/button.tsx b/packages/ui/src/components/button/button.tsx index c4cc1b8b1..a6d0907ea 100644 --- a/packages/ui/src/components/button/button.tsx +++ b/packages/ui/src/components/button/button.tsx @@ -34,7 +34,7 @@ export const buttonVariants = cva( }, ); -type BaseButtonProps = Omit & AriaButtonProps; +type BaseButtonProps = Omit & AriaButtonProps; export type ButtonVariantProps = VariantProps; export type ButtonProps = BaseButtonProps & ButtonVariantProps; diff --git a/packages/ui/src/components/fields/date-picker-field.tsx b/packages/ui/src/components/fields/date-picker-field.tsx index aacc898ff..c68da9287 100644 --- a/packages/ui/src/components/fields/date-picker-field.tsx +++ b/packages/ui/src/components/fields/date-picker-field.tsx @@ -80,7 +80,7 @@ export function DatePickerField({ value: _value, ...rest }: Props) { )} > {isMounted ? : null} - {state.validationState === "invalid" && ( + {state.isInvalid && ( )} diff --git a/packages/ui/src/components/inputs/checkbox.tsx b/packages/ui/src/components/inputs/checkbox.tsx index f32d77b05..32c7870d6 100644 --- a/packages/ui/src/components/inputs/checkbox.tsx +++ b/packages/ui/src/components/inputs/checkbox.tsx @@ -1,7 +1,7 @@ import * as React from "react"; import { cn } from "mxcn"; -type Props = JSX.IntrinsicElements["input"]; +type Props = React.JSX.IntrinsicElements["input"]; export const Checkbox = React.forwardRef((props, ref) => ( & { +type Props = Omit & { errorMessage?: string | null; }; diff --git a/packages/ui/src/components/inputs/textarea.tsx b/packages/ui/src/components/inputs/textarea.tsx index db94b2a79..bae9d6e7f 100644 --- a/packages/ui/src/components/inputs/textarea.tsx +++ b/packages/ui/src/components/inputs/textarea.tsx @@ -1,7 +1,7 @@ import * as React from "react"; import { cn } from "mxcn"; -type Props = Omit & { +type Props = Omit & { errorMessage?: string | null; }; diff --git a/packages/ui/src/components/multi-form/multi-form-step.tsx b/packages/ui/src/components/multi-form/multi-form-step.tsx index d5dbd9f40..12a435944 100644 --- a/packages/ui/src/components/multi-form/multi-form-step.tsx +++ b/packages/ui/src/components/multi-form/multi-form-step.tsx @@ -4,7 +4,7 @@ export interface MultiFormStepItem { title: string; id: string; isRequired?: boolean; - children(formikState: FormikProps): JSX.Element | null; + children(formikState: FormikProps): React.JSX.Element | null; } export function MultiFormStep( diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index dd60093c9..208d32d32 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -40,13 +40,16 @@ importers: version: 8.0.0(eslint@8.51.0)(prettier@3.0.3)(typescript@5.2.2) "@casperiv/eslint-config-next": specifier: 8.0.0 - version: 8.0.0(eslint@8.51.0)(next@13.5.4)(typescript@5.2.2) + version: 8.0.0(eslint@8.51.0)(next@13.5.6)(typescript@5.2.2) "@casperiv/eslint-config-react": specifier: 8.0.0 version: 8.0.0(eslint@8.51.0) eslint: specifier: 8.51.0 version: 8.51.0 + eslint-plugin-deprecation: + specifier: ^2.0.0 + version: 2.0.0(eslint@8.51.0)(typescript@5.2.2) lerna: specifier: ^7.3.1 version: 7.3.1 @@ -281,16 +284,16 @@ importers: version: 5.2.2 vite: specifier: ^4.4.11 - version: 4.4.11(@types/node@20.8.6)(sass@1.69.3) + version: 4.4.11(@types/node@20.8.6)(sass@1.69.4) vitest: specifier: ^0.34.6 - version: 0.34.6(sass@1.69.3) + version: 0.34.6(sass@1.69.4) apps/client: dependencies: "@casperiv/use-socket.io": specifier: 6.0.1 - version: 6.0.1(@types/react@18.2.28)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2) + version: 6.0.1(@types/react@18.2.29)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2) "@casperiv/useful": specifier: ^3.0.0 version: 3.0.0(react-dom@18.2.0)(react@18.2.0) @@ -299,19 +302,19 @@ importers: version: 1.7.17(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-popover": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-tabs": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-toolbar": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-tooltip": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@react-aria/label": - specifier: ^3.7.1 - version: 3.7.1(react@18.2.0) + specifier: ^3.7.2 + version: 3.7.2(react@18.2.0) "@react-aria/ssr": specifier: ^3.8.0 version: 3.8.0(react@18.2.0) @@ -319,14 +322,14 @@ importers: specifier: ^3.21.0 version: 3.21.0(react@18.2.0) "@sentry/browser": - specifier: ^7.74.0 - version: 7.74.0 + specifier: ^7.74.1 + version: 7.74.1 "@sentry/nextjs": - specifier: ^7.74.0 - version: 7.74.0(next@13.5.4)(react@18.2.0) + specifier: ^7.74.1 + version: 7.74.1(next@13.5.6)(react@18.2.0) "@sentry/tracing": - specifier: ^7.74.0 - version: 7.74.0 + specifier: ^7.74.1 + version: 7.74.1 "@snailycad/audit-logger": specifier: workspace:* version: link:../../packages/audit-logger @@ -352,38 +355,38 @@ importers: specifier: ^0.5.10 version: 0.5.10(tailwindcss@3.3.3) "@tanstack/react-query": - specifier: ^4.36.1 - version: 4.36.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^5.0.0 + version: 5.0.0(react-dom@18.2.0)(react@18.2.0) "@tanstack/react-table": specifier: 8.10.7 version: 8.10.7(react-dom@18.2.0)(react@18.2.0) "@types/color": - specifier: ^3.0.4 - version: 3.0.4 + specifier: ^3.0.5 + version: 3.0.5 "@types/connect": - specifier: ^3.4.36 - version: 3.4.36 + specifier: ^3.4.37 + version: 3.4.37 "@types/is-hotkey": - specifier: ^0.1.7 - version: 0.1.7 + specifier: ^0.1.8 + version: 0.1.8 "@types/leaflet": - specifier: ^1.9.6 - version: 1.9.6 + specifier: ^1.9.7 + version: 1.9.7 "@types/nprogress": - specifier: ^0.2.1 - version: 0.2.1 + specifier: ^0.2.2 + version: 0.2.2 "@types/react": - specifier: ^18.2.28 - version: 18.2.28 + specifier: ^18.2.29 + version: 18.2.29 "@types/react-dom": - specifier: ^18.2.13 - version: 18.2.13 + specifier: ^18.2.14 + version: 18.2.14 "@types/sortablejs": - specifier: ^1.15.3 - version: 1.15.3 + specifier: ^1.15.4 + version: 1.15.4 "@types/uuid": - specifier: ^9.0.5 - version: 9.0.5 + specifier: ^9.0.6 + version: 9.0.6 autoprefixer: specifier: ^10.4.16 version: 10.4.16(postcss@8.4.31) @@ -400,8 +403,8 @@ importers: specifier: ^2.30.0 version: 2.30.0 eslint-config-next: - specifier: ^13.5.4 - version: 13.5.4(eslint@8.51.0)(typescript@5.2.2) + specifier: ^13.5.6 + version: 13.5.6(eslint@8.51.0)(typescript@5.2.2) formik: specifier: ^2.4.5 version: 2.4.5(react@18.2.0) @@ -418,11 +421,11 @@ importers: specifier: ^3.0.1 version: 3.0.1 next: - specifier: 13.5.4 - version: 13.5.4(react-dom@18.2.0)(react@18.2.0)(sass@1.69.3) + specifier: 13.5.6 + version: 13.5.6(react-dom@18.2.0)(react@18.2.0)(sass@1.69.4) next-intl: - specifier: 2.20.2 - version: 2.20.2(next@13.5.4)(react@18.2.0) + specifier: 2.21.0 + version: 2.21.0(next@13.5.6)(react@18.2.0) nookies: specifier: ^2.5.2 version: 2.5.2 @@ -448,8 +451,8 @@ importers: specifier: ^2.3.3 version: 2.3.3(react@18.2.0) react-diff-viewer-continued: - specifier: ^3.2.6 - version: 3.2.6(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.3.1 + version: 3.3.1(react-dom@18.2.0)(react@18.2.0) react-digit-input: specifier: ^2.1.0 version: 2.1.0 @@ -467,13 +470,13 @@ importers: version: 4.2.1(leaflet@1.9.4)(react-dom@18.2.0)(react@18.2.0) react-markdown: specifier: ^9.0.0 - version: 9.0.0(@types/react@18.2.28)(react@18.2.0) + version: 9.0.0(@types/react@18.2.29)(react@18.2.0) react-select: specifier: ^5.7.7 - version: 5.7.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 5.7.7(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) react-sortablejs: specifier: ^6.1.4 - version: 6.1.4(@types/sortablejs@1.15.3)(react-dom@18.2.0)(react@18.2.0)(sortablejs@1.15.0) + version: 6.1.4(@types/sortablejs@1.15.4)(react-dom@18.2.0)(react@18.2.0)(sortablejs@1.15.0) react-use: specifier: ^17.4.0 version: 17.4.0(react-dom@18.2.0)(react@18.2.0) @@ -508,8 +511,8 @@ importers: specifier: ^0.2.1 version: 0.2.1 use-intl: - specifier: ^2.20.2 - version: 2.20.2(react@18.2.0) + specifier: ^2.21.0 + version: 2.21.0(react@18.2.0) uuid: specifier: ^9.0.1 version: 9.0.1 @@ -518,7 +521,7 @@ importers: version: 3.22.4 zustand: specifier: ^4.4.3 - version: 4.4.3(@types/react@18.2.28)(react@18.2.0) + version: 4.4.3(@types/react@18.2.29)(react@18.2.0) devDependencies: dotenv: specifier: ^16.3.1 @@ -527,8 +530,8 @@ importers: specifier: ^8.4.31 version: 8.4.31 sass: - specifier: ^1.69.3 - version: 1.69.3 + specifier: ^1.69.4 + version: 1.69.4 tailwindcss: specifier: ^3.3.3 version: 3.3.3 @@ -536,11 +539,11 @@ importers: specifier: ^5.2.2 version: 5.2.2 vite: - specifier: ^4.4.11 - version: 4.4.11(@types/node@20.8.6)(sass@1.69.3) + specifier: ^4.5.0 + version: 4.5.0(@types/node@20.8.6)(sass@1.69.4) vitest: specifier: ^0.34.6 - version: 0.34.6(sass@1.69.3) + version: 0.34.6(sass@1.69.4) packages/audit-logger: dependencies: @@ -580,7 +583,7 @@ importers: version: 4.4.9(@types/node@20.8.0) vitest: specifier: ^0.34.6 - version: 0.34.6(sass@1.69.3) + version: 0.34.6(sass@1.69.4) packages/permissions: devDependencies: @@ -595,7 +598,7 @@ importers: version: 4.4.9(@types/node@20.8.0) vitest: specifier: ^0.34.6 - version: 0.34.6(sass@1.69.3) + version: 0.34.6(sass@1.69.4) packages/schemas: dependencies: @@ -642,79 +645,79 @@ importers: version: 3.5.0 "@radix-ui/react-accordion": specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-context-menu": specifier: ^2.1.5 - version: 2.1.5(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-dropdown-menu": specifier: ^2.0.6 - version: 2.0.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-hover-card": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-tabs": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@react-aria/breadcrumbs": - specifier: ^3.5.6 - version: 3.5.6(react@18.2.0) + specifier: ^3.5.7 + version: 3.5.7(react@18.2.0) "@react-aria/button": - specifier: ^3.8.3 - version: 3.8.3(react@18.2.0) + specifier: ^3.8.4 + version: 3.8.4(react@18.2.0) "@react-aria/calendar": - specifier: ^3.5.1 - version: 3.5.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.5.2 + version: 3.5.2(react-dom@18.2.0)(react@18.2.0) "@react-aria/checkbox": - specifier: ^3.11.1 - version: 3.11.1(react@18.2.0) + specifier: ^3.11.2 + version: 3.11.2(react@18.2.0) "@react-aria/combobox": - specifier: ^3.7.0 - version: 3.7.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.7.1 + version: 3.7.1(react-dom@18.2.0)(react@18.2.0) "@react-aria/datepicker": - specifier: ^3.8.0 - version: 3.8.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.8.1 + version: 3.8.1(react-dom@18.2.0)(react@18.2.0) "@react-aria/dialog": - specifier: ^3.5.6 - version: 3.5.6(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.5.7 + version: 3.5.7(react-dom@18.2.0)(react@18.2.0) "@react-aria/focus": - specifier: ^3.14.2 - version: 3.14.2(react@18.2.0) + specifier: ^3.14.3 + version: 3.14.3(react@18.2.0) "@react-aria/i18n": - specifier: ^3.8.3 - version: 3.8.3(react@18.2.0) + specifier: ^3.8.4 + version: 3.8.4(react@18.2.0) "@react-aria/interactions": - specifier: ^3.19.0 - version: 3.19.0(react@18.2.0) + specifier: ^3.19.1 + version: 3.19.1(react@18.2.0) "@react-aria/label": - specifier: ^3.7.1 - version: 3.7.1(react@18.2.0) + specifier: ^3.7.2 + version: 3.7.2(react@18.2.0) "@react-aria/listbox": - specifier: ^3.11.0 - version: 3.11.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.11.1 + version: 3.11.1(react-dom@18.2.0)(react@18.2.0) "@react-aria/menu": - specifier: ^3.11.0 - version: 3.11.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.11.1 + version: 3.11.1(react-dom@18.2.0)(react@18.2.0) "@react-aria/overlays": - specifier: ^3.18.0 - version: 3.18.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.18.1 + version: 3.18.1(react-dom@18.2.0)(react@18.2.0) "@react-aria/progress": - specifier: ^3.4.6 - version: 3.4.6(react@18.2.0) + specifier: ^3.4.7 + version: 3.4.7(react@18.2.0) "@react-aria/radio": - specifier: ^3.8.1 - version: 3.8.1(react@18.2.0) + specifier: ^3.8.2 + version: 3.8.2(react@18.2.0) "@react-aria/switch": - specifier: ^3.5.5 - version: 3.5.5(react@18.2.0) + specifier: ^3.5.6 + version: 3.5.6(react@18.2.0) "@react-aria/textfield": - specifier: ^3.12.1 - version: 3.12.1(react@18.2.0) + specifier: ^3.12.2 + version: 3.12.2(react@18.2.0) "@react-aria/utils": - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.21.1 + version: 3.21.1(react@18.2.0) "@react-aria/visually-hidden": - specifier: ^3.8.5 - version: 3.8.5(react@18.2.0) + specifier: ^3.8.6 + version: 3.8.6(react@18.2.0) "@react-stately/calendar": specifier: ^3.4.1 version: 3.4.1(react@18.2.0) @@ -767,11 +770,11 @@ importers: specifier: ^1.74.0 version: link:../utils "@types/react": - specifier: ^18.2.28 - version: 18.2.28 + specifier: ^18.2.29 + version: 18.2.29 "@types/react-dom": - specifier: ^18.2.13 - version: 18.2.13 + specifier: ^18.2.14 + version: 18.2.14 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -788,8 +791,8 @@ importers: specifier: "*" version: 13.4.13(@babel/core@7.22.11)(react-dom@18.2.0)(react@18.2.0) next-intl: - specifier: ">=2.20.2" - version: 2.20.2(next@13.4.13)(react@18.2.0) + specifier: ">=2.21.0" + version: 2.21.0(next@13.4.13)(react@18.2.0) react: specifier: ">=18.2.0" version: 18.2.0 @@ -798,7 +801,7 @@ importers: version: 1.10.3(react@18.2.0) react-dnd: specifier: 16.0.1 - version: 16.0.1(@types/react@18.2.28)(react@18.2.0) + version: 16.0.1(@types/react@18.2.29)(react@18.2.0) react-dnd-html5-backend: specifier: 16.0.1 version: 16.0.1 @@ -818,30 +821,30 @@ importers: specifier: ^2.6.2 version: 2.6.2 use-intl: - specifier: ">=2.20.2" - version: 2.20.2(react@18.2.0) + specifier: ">=2.21.0" + version: 2.21.0(react@18.2.0) devDependencies: "@storybook/addon-essentials": - specifier: ^7.4.6 - version: 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.0 + version: 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@storybook/addon-interactions": - specifier: ^7.4.6 - version: 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.0 + version: 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@storybook/addon-links": - specifier: ^7.4.6 - version: 7.4.6(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.0 + version: 7.5.0(react-dom@18.2.0)(react@18.2.0) "@storybook/addon-styling": specifier: ^1.3.7 - version: 1.3.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(less@4.2.0)(postcss@8.4.31)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.88.2) + version: 1.3.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(less@4.2.0)(postcss@8.4.31)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.88.2) "@storybook/blocks": - specifier: ^7.4.6 - version: 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.0 + version: 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@storybook/react": - specifier: ^7.4.6 - version: 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) + specifier: ^7.5.0 + version: 7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) "@storybook/react-vite": - specifier: ^7.4.6 - version: 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.4.11) + specifier: ^7.5.0 + version: 7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.5.0) "@storybook/testing-library": specifier: ^0.2.2 version: 0.2.2 @@ -855,8 +858,8 @@ importers: specifier: ^15.8.1 version: 15.8.1 storybook: - specifier: ^7.4.6 - version: 7.4.6 + specifier: ^7.5.0 + version: 7.5.0 tailwindcss: specifier: ^3.3.3 version: 3.3.3 @@ -867,8 +870,8 @@ importers: specifier: ^5.2.2 version: 5.2.2 vite: - specifier: ^4.4.11 - version: 4.4.11(less@4.2.0) + specifier: ^4.5.0 + version: 4.5.0(less@4.2.0) packages/utils: dependencies: @@ -911,7 +914,7 @@ importers: version: 4.4.9(@types/node@20.8.0) vitest: specifier: ^0.34.6 - version: 0.34.6(sass@1.69.3) + version: 0.34.6(sass@1.69.4) packages: /@aashutoshrathi/word-wrap@1.2.6: @@ -2610,7 +2613,7 @@ packages: } dev: true - /@casperiv/eslint-config-next@8.0.0(eslint@8.51.0)(next@13.5.4)(typescript@5.2.2): + /@casperiv/eslint-config-next@8.0.0(eslint@8.51.0)(next@13.5.6)(typescript@5.2.2): resolution: { integrity: sha512-sCr6MHhIg81DlcvGqzE24qYEUddeFWSpSTUcOJM6tUiUQlBIv0en0YcNzcIbd8Y/TJ1du6GOazXANJxxD1XWdw==, @@ -2620,8 +2623,8 @@ packages: next: ">=13" dependencies: eslint: 8.51.0 - eslint-config-next: 13.5.4(eslint@8.51.0)(typescript@5.2.2) - next: 13.5.4(react-dom@18.2.0)(react@18.2.0)(sass@1.69.3) + eslint-config-next: 13.5.6(eslint@8.51.0)(typescript@5.2.2) + next: 13.5.6(react-dom@18.2.0)(react@18.2.0)(sass@1.69.4) transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color @@ -2666,7 +2669,7 @@ packages: - typescript dev: true - /@casperiv/use-socket.io@6.0.1(@types/react@18.2.28)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2): + /@casperiv/use-socket.io@6.0.1(@types/react@18.2.29)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2): resolution: { integrity: sha512-2MEuOYjHR+BOSmxtqzNQcQTeJLRke7nkeJBPVJjmPahbydeX1jyp2sPd6a0Cn/SD1D7fuJRy9XccvRibcRmakQ==, @@ -2681,7 +2684,7 @@ packages: socket.io: 4.7.2 socket.io-client: 4.7.2 tsup: 7.2.0(postcss@8.4.31)(typescript@5.2.2) - zustand: 4.4.3(@types/react@18.2.28)(react@18.2.0) + zustand: 4.4.3(@types/react@18.2.29)(react@18.2.0) transitivePeerDependencies: - "@swc/core" - "@types/react" @@ -2827,7 +2830,7 @@ packages: } dev: false - /@emotion/react@11.11.1(@types/react@18.2.28)(react@18.2.0): + /@emotion/react@11.11.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==, @@ -2846,7 +2849,7 @@ packages: "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) "@emotion/utils": 1.2.1 "@emotion/weak-memoize": 0.3.1 - "@types/react": 18.2.28 + "@types/react": 18.2.29 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -3784,14 +3787,14 @@ packages: chalk: 4.1.2 dev: true - /@joshwooding/vite-plugin-react-docgen-typescript@0.2.1(typescript@5.2.2)(vite@4.4.11): + /@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.2.2)(vite@4.5.0): resolution: { - integrity: sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==, + integrity: sha512-2D6y7fNvFmsLmRt6UCOFJPvFoPMJGT0Uh1Wg0RaigUp7kdQPs6yYn8Dmx6GZkOH/NW0yMTwRz/p0SRMMRo50vA==, } peerDependencies: typescript: ">= 4.3.x" - vite: ^3.0.0 || ^4.0.0 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 peerDependenciesMeta: typescript: optional: true @@ -3801,7 +3804,7 @@ packages: magic-string: 0.27.0 react-docgen-typescript: 2.2.2(typescript@5.2.2) typescript: 5.2.2 - vite: 4.4.11(less@4.2.0) + vite: 4.5.0(less@4.2.0) dev: true /@jridgewell/gen-mapping@0.3.3: @@ -3994,7 +3997,7 @@ packages: react: ">=16" dependencies: "@types/mdx": 2.0.7 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 dev: true @@ -4016,16 +4019,16 @@ packages: } dev: false - /@next/env@13.5.4: + /@next/env@13.5.6: resolution: { - integrity: sha512-LGegJkMvRNw90WWphGJ3RMHMVplYcOfRWf2Be3td3sUa+1AaxmsYyANsA+znrGCBjXJNi4XAQlSoEfUxs/4kIQ==, + integrity: sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==, } - /@next/eslint-plugin-next@13.5.4: + /@next/eslint-plugin-next@13.5.6: resolution: { - integrity: sha512-vI94U+D7RNgX6XypSyjeFrOzxGlZyxOplU0dVE5norIfZGn/LDjJYPHdvdsR5vN1eRtl6PDAsOHmycFEOljK5A==, + integrity: sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==, } dependencies: glob: 7.1.7 @@ -4042,10 +4045,10 @@ packages: dev: false optional: true - /@next/swc-darwin-arm64@13.5.4: + /@next/swc-darwin-arm64@13.5.6: resolution: { - integrity: sha512-Df8SHuXgF1p+aonBMcDPEsaahNo2TCwuie7VXED4FVyECvdXfRT9unapm54NssV9tF3OQFKBFOdlje4T43VO0w==, + integrity: sha512-5nvXMzKtZfvcu4BhtV0KH1oGv4XEW+B+jOfmBdpFI3C7FrB/MfujRpWYSBBO64+qbW8pkZiSyQv9eiwnn5VIQA==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4065,10 +4068,10 @@ packages: dev: false optional: true - /@next/swc-darwin-x64@13.5.4: + /@next/swc-darwin-x64@13.5.6: resolution: { - integrity: sha512-siPuUwO45PnNRMeZnSa8n/Lye5ZX93IJom9wQRB5DEOdFrw0JjOMu1GINB8jAEdwa7Vdyn1oJ2xGNaQpdQQ9Pw==, + integrity: sha512-6cgBfxg98oOCSr4BckWjLLgiVwlL3vlLj8hXg2b+nDgm4bC/qVXXLfpLB9FHdoDu4057hzywbxKvmYGmi7yUzA==, } engines: { node: ">= 10" } cpu: [x64] @@ -4088,10 +4091,10 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-gnu@13.5.4: + /@next/swc-linux-arm64-gnu@13.5.6: resolution: { - integrity: sha512-l/k/fvRP/zmB2jkFMfefmFkyZbDkYW0mRM/LB+tH5u9pB98WsHXC0WvDHlGCYp3CH/jlkJPL7gN8nkTQVrQ/2w==, + integrity: sha512-txagBbj1e1w47YQjcKgSU4rRVQ7uF29YpnlHV5xuVUsgCUf2FmyfJ3CPjZUvpIeXCJAoMCFAoGnbtX86BK7+sg==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4111,10 +4114,10 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-musl@13.5.4: + /@next/swc-linux-arm64-musl@13.5.6: resolution: { - integrity: sha512-YYGb7SlLkI+XqfQa8VPErljb7k9nUnhhRrVaOdfJNCaQnHBcvbT7cx/UjDQLdleJcfyg1Hkn5YSSIeVfjgmkTg==, + integrity: sha512-cGd+H8amifT86ZldVJtAKDxUqeFyLWW+v2NlBULnLAdWsiuuN8TuhVBt8ZNpCqcAuoruoSWynvMWixTFcroq+Q==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4134,10 +4137,10 @@ packages: dev: false optional: true - /@next/swc-linux-x64-gnu@13.5.4: + /@next/swc-linux-x64-gnu@13.5.6: resolution: { - integrity: sha512-uE61vyUSClnCH18YHjA8tE1prr/PBFlBFhxBZis4XBRJoR+txAky5d7gGNUIbQ8sZZ7LVkSVgm/5Fc7mwXmRAg==, + integrity: sha512-Mc2b4xiIWKXIhBy2NBTwOxGD3nHLmq4keFk+d4/WL5fMsB8XdJRdtUlL87SqVCTSaf1BRuQQf1HvXZcy+rq3Nw==, } engines: { node: ">= 10" } cpu: [x64] @@ -4157,10 +4160,10 @@ packages: dev: false optional: true - /@next/swc-linux-x64-musl@13.5.4: + /@next/swc-linux-x64-musl@13.5.6: resolution: { - integrity: sha512-qVEKFYML/GvJSy9CfYqAdUexA6M5AklYcQCW+8JECmkQHGoPxCf04iMh7CPR7wkHyWWK+XLt4Ja7hhsPJtSnhg==, + integrity: sha512-CFHvP9Qz98NruJiUnCe61O6GveKKHpJLloXbDSWRhqhkJdZD2zU5hG+gtVJR//tyW897izuHpM6Gtf6+sNgJPQ==, } engines: { node: ">= 10" } cpu: [x64] @@ -4180,10 +4183,10 @@ packages: dev: false optional: true - /@next/swc-win32-arm64-msvc@13.5.4: + /@next/swc-win32-arm64-msvc@13.5.6: resolution: { - integrity: sha512-mDSQfqxAlfpeZOLPxLymZkX0hYF3juN57W6vFHTvwKlnHfmh12Pt7hPIRLYIShk8uYRsKPtMTth/EzpwRI+u8w==, + integrity: sha512-aFv1ejfkbS7PUa1qVPwzDHjQWQtknzAZWGTKYIAaS4NMtBlk3VyA6AYn593pqNanlicewqyl2jUhQAaFV/qXsg==, } engines: { node: ">= 10" } cpu: [arm64] @@ -4203,10 +4206,10 @@ packages: dev: false optional: true - /@next/swc-win32-ia32-msvc@13.5.4: + /@next/swc-win32-ia32-msvc@13.5.6: resolution: { - integrity: sha512-aoqAT2XIekIWoriwzOmGFAvTtVY5O7JjV21giozBTP5c6uZhpvTWRbmHXbmsjZqY4HnEZQRXWkSAppsIBweKqw==, + integrity: sha512-XqqpHgEIlBHvzwG8sp/JXMFkLAfGLqkbVsyN+/Ih1mR8INb6YCc2x/Mbwi6hsAgUnqQztz8cvEbHJUbSl7RHDg==, } engines: { node: ">= 10" } cpu: [ia32] @@ -4226,10 +4229,10 @@ packages: dev: false optional: true - /@next/swc-win32-x64-msvc@13.5.4: + /@next/swc-win32-x64-msvc@13.5.6: resolution: { - integrity: sha512-cyRvlAxwlddlqeB9xtPSfNSCRy8BOa4wtMo0IuI9P7Y0XT2qpDrpFKRyZ7kUngZis59mPVla5k8X1oOJ8RxDYg==, + integrity: sha512-Cqfe1YmOS7k+5mGu92nl5ULkzpKuxJrP3+4AEuPmrpFZ3BHxTY3TnHmU1On3bFmFFs6FbTcdF58CCUProGpIGQ==, } engines: { node: ">= 10" } cpu: [x64] @@ -4996,7 +4999,7 @@ packages: dependencies: "@babel/runtime": 7.22.11 - /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==, @@ -5014,21 +5017,21 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collapsible": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-collapsible": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==, @@ -5045,13 +5048,13 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==, @@ -5069,20 +5072,20 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==, @@ -5099,16 +5102,16 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==, @@ -5121,10 +5124,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-R5XaDj06Xul1KGb+WP8qiOh7tKJNz2durpLBXAGZjSVtctcRFCuEvy2gtMwRJGePwQQE5nV77gs4FwRi8T+r2g==, @@ -5142,18 +5145,18 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-context@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-context@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==, @@ -5166,10 +5169,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-direction@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-direction@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==, @@ -5182,10 +5185,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==, @@ -5203,17 +5206,17 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==, @@ -5231,17 +5234,17 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==, @@ -5259,19 +5262,19 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==, @@ -5284,10 +5287,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==, @@ -5304,16 +5307,16 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==, @@ -5330,16 +5333,16 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-OcUN2FU0YpmajD/qkph3XzMcK/NmSk9hGWnjV68p6QiZMgILugusgQwnLSDs3oFSJYGKf3Y49zgFedhGh04k9A==, @@ -5357,21 +5360,21 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-id@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-id@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==, @@ -5384,11 +5387,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==, @@ -5406,30 +5409,30 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 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.28)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.29)(react@18.2.0) dev: false - /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==, @@ -5447,27 +5450,27 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 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.28)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.29)(react@18.2.0) dev: false - /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==, @@ -5485,22 +5488,22 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@floating-ui/react-dom": 2.0.1(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.28)(react@18.2.0) + "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.29)(react@18.2.0) "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==, @@ -5518,22 +5521,22 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@floating-ui/react-dom": 2.0.1(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.28)(react@18.2.0) + "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.29)(react@18.2.0) "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==, @@ -5550,14 +5553,14 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==, @@ -5574,14 +5577,14 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==, @@ -5598,15 +5601,15 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==, @@ -5623,13 +5626,13 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==, @@ -5647,20 +5650,20 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==, @@ -5679,32 +5682,32 @@ packages: "@babel/runtime": 7.22.11 "@radix-ui/number": 1.0.1 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 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.28)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.29)(react@18.2.0) dev: true - /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==, @@ -5721,13 +5724,13 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-slot@1.0.2(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-slot@1.0.2(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==, @@ -5740,11 +5743,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==, @@ -5762,20 +5765,20 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==, @@ -5793,18 +5796,18 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==, @@ -5822,14 +5825,14 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==, @@ -5847,18 +5850,18 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toggle-group": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-toggle-group": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==, @@ -5876,24 +5879,24 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==, @@ -5906,10 +5909,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==, @@ -5922,11 +5925,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==, @@ -5939,11 +5942,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==, @@ -5956,10 +5959,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==, @@ -5972,11 +5975,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 dev: true - /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==, @@ -5990,10 +5993,10 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-use-size@1.0.1(@types/react@18.2.28)(react@18.2.0): + /@radix-ui/react-use-size@1.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==, @@ -6006,11 +6009,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.28)(react@18.2.0) - "@types/react": 18.2.28 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@types/react": 18.2.29 react: 18.2.0 - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==, @@ -6027,9 +6030,9 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.28 - "@types/react-dom": 18.2.13 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.29 + "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -6041,35 +6044,35 @@ packages: dependencies: "@babel/runtime": 7.22.11 - /@react-aria/breadcrumbs@3.5.6(react@18.2.0): + /@react-aria/breadcrumbs@3.5.7(react@18.2.0): resolution: { - integrity: sha512-VUdppXcTU09J6Jbg0VYCitOaePm74Q9EywKgU8OTZ93vZf2odSDVf1jjO9B2kh9a84OGhZyi5v1HRkrbZFHWLQ==, + integrity: sha512-z+L1gNyWrjZ4Fs0Vo4AkwJicPpEGIestww6r8CiTlt07eo0vCReNmB3oofI6nMJOSu51yef+qqBtFyr0tqBgiw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/link": 3.6.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) - "@react-types/breadcrumbs": 3.7.0(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/link": 3.6.1(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) + "@react-types/breadcrumbs": 3.7.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/button@3.8.3(react@18.2.0): + /@react-aria/button@3.8.4(react@18.2.0): resolution: { - integrity: sha512-e7J97j0meHUhQy0YmJh+kLTl0vUJSoD9mmdnlHIXm1RRcBkH9CDScECUuyPetB330nUvS03eTN6pQ5OmrFtJTQ==, + integrity: sha512-rTGZk5zu+lQNjfij2fwnw2PAgBgzNLi3zbMw1FL5/XwVx+lEH2toeqKLoqULtd7nSxskYuQz56VhmjUok6Qkmg==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/toggle": 3.6.3(react@18.2.0) "@react-types/button": 3.9.0(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) @@ -6077,20 +6080,20 @@ packages: react: 18.2.0 dev: false - /@react-aria/calendar@3.5.1(react-dom@18.2.0)(react@18.2.0): + /@react-aria/calendar@3.5.2(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-3gGiI2arrGQtlPD9633l00TR4y5dj9IMFapEiCDuwVwNSCsnH8aiz/emg+3hGFq86QoyvkFBvnKmezJIVKfPkA==, + integrity: sha512-HiyUiY0C2aoHa2252Es/Rj1fh5/tewLf6/3gUr42zKl7lq4IqG9cyW7LVRwA47ow1VGLPZSSqTcVakB7jgr7Zw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: "@internationalized/date": 3.5.0 - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) "@react-aria/live-announcer": 3.3.1 - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/calendar": 3.4.1(react@18.2.0) "@react-types/button": 3.9.0(react@18.2.0) "@react-types/calendar": 3.4.1(react@18.2.0) @@ -6100,17 +6103,17 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/checkbox@3.11.1(react@18.2.0): + /@react-aria/checkbox@3.11.2(react@18.2.0): resolution: { - integrity: sha512-lg6vwUjxrBgh8ZOBfiI/BI4DQpH6nTzYEc7abjVIdp3Vgwvr6gnllxw58+JcsRVa/Iw2BRyWW0KZiKB1e/pb7Q==, + integrity: sha512-8cgXxpc7IMJ9buw+Rbhr1xc66zNp2ePuFpjw3uWyH7S3IJEd2f5kXUDNWLXQRADJso95UlajRlJQiG4QIObEnA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/label": 3.7.1(react@18.2.0) - "@react-aria/toggle": 3.8.1(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/label": 3.7.2(react@18.2.0) + "@react-aria/toggle": 3.8.2(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/checkbox": 3.5.1(react@18.2.0) "@react-stately/toggle": 3.6.3(react@18.2.0) "@react-types/checkbox": 3.5.2(react@18.2.0) @@ -6119,27 +6122,27 @@ packages: react: 18.2.0 dev: false - /@react-aria/combobox@3.7.0(react-dom@18.2.0)(react@18.2.0): + /@react-aria/combobox@3.7.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-rrTptAsugPzcO7MqWMIuSpoNYpLBUOaGeRD6pOiNNPm/lAooZSYQg1AxM2m7pdE2gQQsiLInRbq/KvcfYMnDfQ==, + integrity: sha512-37no1b3sRI9mDh3MpMPWNt0Q8QdoRipnx12Vx5Uvtb0PA23hwOWDquICzs157SoJpXP49/+eH6LiA0uTsqwVuQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/listbox": 3.11.0(react-dom@18.2.0)(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/listbox": 3.11.1(react-dom@18.2.0)(react@18.2.0) "@react-aria/live-announcer": 3.3.1 - "@react-aria/menu": 3.11.0(react-dom@18.2.0)(react@18.2.0) - "@react-aria/overlays": 3.18.0(react-dom@18.2.0)(react@18.2.0) - "@react-aria/selection": 3.17.0(react-dom@18.2.0)(react@18.2.0) - "@react-aria/textfield": 3.12.1(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/menu": 3.11.1(react-dom@18.2.0)(react@18.2.0) + "@react-aria/overlays": 3.18.1(react-dom@18.2.0)(react@18.2.0) + "@react-aria/selection": 3.17.1(react-dom@18.2.0)(react@18.2.0) + "@react-aria/textfield": 3.12.2(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/collections": 3.10.2(react@18.2.0) "@react-stately/combobox": 3.7.1(react@18.2.0) - "@react-stately/layout": 3.13.2(react@18.2.0) + "@react-stately/layout": 3.13.3(react@18.2.0) "@react-types/button": 3.9.0(react@18.2.0) "@react-types/combobox": 3.8.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) @@ -6148,10 +6151,10 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/datepicker@3.8.0(react-dom@18.2.0)(react@18.2.0): + /@react-aria/datepicker@3.8.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-JCzzlGbOI46IEkEgD5RPZRzpZBzgVYQnjhGw592zyl/5C68/jmNqyblF3mQxeD7qq4lFwrsNYXRCu23RiDIoSA==, + integrity: sha512-q2Z5DYDkic3RWzvg3oysrA2VEebuxtEfqj8PSlNFndZh/pNrA+Tvkaatdk/BoxlsZsfeLof+/tBq6yWeqTDguQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6160,12 +6163,12 @@ packages: "@internationalized/date": 3.5.0 "@internationalized/number": 3.3.0 "@internationalized/string": 3.1.1 - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/label": 3.7.1(react@18.2.0) - "@react-aria/spinbutton": 3.5.3(react-dom@18.2.0)(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/label": 3.7.2(react@18.2.0) + "@react-aria/spinbutton": 3.5.4(react-dom@18.2.0)(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/datepicker": 3.8.0(react@18.2.0) "@react-types/button": 3.9.0(react@18.2.0) "@react-types/calendar": 3.4.1(react@18.2.0) @@ -6177,18 +6180,18 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/dialog@3.5.6(react-dom@18.2.0)(react@18.2.0): + /@react-aria/dialog@3.5.7(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-X1bVcDHvBG0mVyPcP4L1C42+6eynTN9QDww6aHmHJkyJMv6xYqlM7/MieKoc3BHO3XS6agMWRll4JaSgOzU1iA==, + integrity: sha512-IKeBaIQBl+WYkhytyE0eISW4ApOEvCJZuw9Xq7gjlKFBlF4X6ffo8souv12KpaznK6/fp1vtEXMmy1AfejiT8Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/overlays": 3.18.0(react-dom@18.2.0)(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/overlays": 3.18.1(react-dom@18.2.0)(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/overlays": 3.6.3(react@18.2.0) "@react-types/dialog": 3.5.6(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) @@ -6197,26 +6200,26 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/focus@3.14.2(react@18.2.0): + /@react-aria/focus@3.14.3(react@18.2.0): resolution: { - integrity: sha512-ozP3g+C/fp3BAgI7dhFgBSzJCOwlW+pKaUlv7ay+btzXX0nc3jgt26uPSDr+Yv2tQcHcQnxfP0kHlXLS7to+lA==, + integrity: sha512-gvO/frZ7SxyfyHJYC+kRsUXnXct8hGHKlG1TwbkzCCXim9XIPKDgRzfNGuFfj0i8ZpR9xmsjOBUkHZny0uekFA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 clsx: 1.2.1 react: 18.2.0 dev: false - /@react-aria/i18n@3.8.3(react@18.2.0): + /@react-aria/i18n@3.8.4(react@18.2.0): resolution: { - integrity: sha512-Q3jF+cwXfFIJFeCMX5M+JX8qcNm3TEoWFrcFGfYoKnq740zaWosuuAaGh2iSfUUooDtwGG6X6uUJbZfBIK4j4w==, + integrity: sha512-YlTJn7YJlUxds/T5dNtme551qc118NoDQhK+IgGpzcmPQ3xSnwBAQP4Zwc7wCpAU+xEwnNcsGw+L1wJd49He/A==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6226,73 +6229,73 @@ packages: "@internationalized/number": 3.3.0 "@internationalized/string": 3.1.1 "@react-aria/ssr": 3.8.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/interactions@3.19.0(react@18.2.0): + /@react-aria/interactions@3.19.1(react@18.2.0): resolution: { - integrity: sha512-nJ8VTmEOYJAAvV7wzeQVnamxWd3j16hGAzG++onjhluSWWKO1jMRN6WG9LDwvT5mBI0VYwf7JdVB3QBaCa9fsQ==, + integrity: sha512-2QFOvq/rJfMGEezmtYcGcJmfaD16kHKcSTLFrZ8aeBK6hYFddGVZJZk+dXf+G7iNaffa8rMt6uwzVe/malJPBA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: "@react-aria/ssr": 3.8.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/label@3.7.1(react@18.2.0): + /@react-aria/label@3.7.2(react@18.2.0): resolution: { - integrity: sha512-/MMHGXVlz6HvZyPDX9mu4an8rM8v5t68jGnyBoaAL8oultWHI1bVRJ/Ro8rT0zY/68m5EWtwNYNyvcZ2X3JZ/w==, + integrity: sha512-rS0xQy+4RH1+JLESzLZd9H285McjNNf2kKwBhzU0CW3akjlu7gqaMKEJhX9MlpPDIVOUc2oEObGdU3UMmqa8ew==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/label": 3.8.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/link@3.6.0(react@18.2.0): + /@react-aria/link@3.6.1(react@18.2.0): resolution: { - integrity: sha512-AH854yRtccwIRH6wbWf5P5daBNWzn41xVt6FbEG+sOLUmWH2anWUzU3Nz2qVBOuv/fxYrnfuXzpG7h1st15lwQ==, + integrity: sha512-uVkuNHabxE11Eqeo0d1RA86EckOlfJ2Ld8uN8HnTxiLetXLZYUMBwlZfBJvT3RdwPtTG7jC3OK3BvwiyIJrtZw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) - "@react-types/link": 3.5.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) + "@react-types/link": 3.5.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/listbox@3.11.0(react-dom@18.2.0)(react@18.2.0): + /@react-aria/listbox@3.11.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-N82ISTmnUWsp2Bmo/Kjy+3l/1/CSfRl/y6U3vUMZzEc+v4ptgWscUoWMpqzDrBpYhbVx1RdFuFJYOYOv4M5QYQ==, + integrity: sha512-AkguQaIkqpP5oe++EZqYHowD7FfeQs+yY0QZVSsVPpNExcBug8/GcXvhSclcOxdh6ekZg4Wwcq7K0zhuTSOPzg==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/label": 3.7.1(react@18.2.0) - "@react-aria/selection": 3.17.0(react-dom@18.2.0)(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/label": 3.7.2(react@18.2.0) + "@react-aria/selection": 3.17.1(react-dom@18.2.0)(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/collections": 3.10.2(react@18.2.0) "@react-stately/list": 3.10.0(react@18.2.0) "@react-types/listbox": 3.4.5(react@18.2.0) @@ -6311,21 +6314,21 @@ packages: "@swc/helpers": 0.5.2 dev: false - /@react-aria/menu@3.11.0(react-dom@18.2.0)(react@18.2.0): + /@react-aria/menu@3.11.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-rPHMHPkmdJdatxlvV4lYFA4z5d9HSlBS9b0LUsL5iheoyXIgdiD/WF4y6W5ye+j4ZnZTO1lA6hIopIcSE/G/vg==, + integrity: sha512-1eVVDrGnSExaL7e8IiaM9ndWTjT23rsnQGUK3p66R1Ojs8Q5rPBuJpP74rsmIpYiKOCr8WyZunjm5Fjv5KfA5Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/overlays": 3.18.0(react-dom@18.2.0)(react@18.2.0) - "@react-aria/selection": 3.17.0(react-dom@18.2.0)(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/overlays": 3.18.1(react-dom@18.2.0)(react@18.2.0) + "@react-aria/selection": 3.17.1(react-dom@18.2.0)(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/collections": 3.10.2(react@18.2.0) "@react-stately/menu": 3.5.6(react@18.2.0) "@react-stately/tree": 3.7.3(react@18.2.0) @@ -6337,21 +6340,21 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/overlays@3.18.0(react-dom@18.2.0)(react@18.2.0): + /@react-aria/overlays@3.18.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-2y1QlDgR3CNN0koFFreSFlWgMuzhdZQ9CAVw6vUJaL5qZcIcS8H/1AzjNj81/sGrY2+iSauPpLNOh37lqDkKqQ==, + integrity: sha512-C74eZbTp3OA/gXy9/+4iPrZiz7g27Zy6Q1+plbg5QTLpsFLBt2Ypy9jTTANNRZfW7a5NW/Bnw9WIRjCdtTBRXw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) "@react-aria/ssr": 3.8.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) - "@react-aria/visually-hidden": 3.8.5(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) + "@react-aria/visually-hidden": 3.8.6(react@18.2.0) "@react-stately/overlays": 3.6.3(react@18.2.0) "@react-types/button": 3.9.0(react@18.2.0) "@react-types/overlays": 3.8.3(react@18.2.0) @@ -6361,36 +6364,36 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/progress@3.4.6(react@18.2.0): + /@react-aria/progress@3.4.7(react@18.2.0): resolution: { - integrity: sha512-+kvP1kpDUCP7ykj58KFdtp/L75B+bA19LjTLLQJ6dZSxYWVsCFlEI2a6esQkpGGHlXEbhfl60lRmLVaeZyjrKw==, + integrity: sha512-wQ+xnzt5bBdbyQ2Qx80HxaFrPZRFKge57tmJWg4qelo7tzmgb3a22tf0Ug4C3gEz/uAv0JQWOtqLKTxjsiVP7g==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/label": 3.7.1(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/label": 3.7.2(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/progress": 3.5.0(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/radio@3.8.1(react@18.2.0): + /@react-aria/radio@3.8.2(react@18.2.0): resolution: { - integrity: sha512-RliB3qQ4/WhcZIN2XpQzDIO/Yhzei0OYYFYZKHLGLaFIiVI2phDZQLhQc35HEBBw3TvHnaO5NzGQmZ9zt5p5Jg==, + integrity: sha512-j8yyGjboTgoBEQWlnJbQVvegKiUeQEUvU/kZ7ZAdj+eAL3BqfO6FO7yt6WzK7ZIBzjGS9YbesaUa3hwIjDi3LA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/label": 3.7.1(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/label": 3.7.2(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/radio": 3.9.1(react@18.2.0) "@react-types/radio": 3.5.2(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) @@ -6398,19 +6401,19 @@ packages: react: 18.2.0 dev: false - /@react-aria/selection@3.17.0(react-dom@18.2.0)(react@18.2.0): + /@react-aria/selection@3.17.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-Dmf2ri+czVDVIBdEq9KTbIqbohDaENnCUDCPqHmh87oJhrIZhgy29zsZIR5/j+zJzD59Ogy63weZ4yFnMzFtEw==, + integrity: sha512-g5gkSc/M+zJiVgWbUpKN095ea0D4fxdluH9ZcXxN4AAvcrVfEJyAnMmWOIKRebN8xR0KPfNRnKB7E6jld2tbuQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/i18n": 3.8.3(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/collections": 3.10.2(react@18.2.0) "@react-stately/selection": 3.14.0(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) @@ -6419,18 +6422,18 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/spinbutton@3.5.3(react-dom@18.2.0)(react@18.2.0): + /@react-aria/spinbutton@3.5.4(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-f1802nJuJ/jDIpjZiQsj6jtpl0rXxb00briB54Zxeu6l+6OSQwyeMK/bcZo4n1fT/3qIu/WmVigZgDhjiYcucQ==, + integrity: sha512-W5dhUOjyBIgd8d4z526fW/HXQ+BdFceeGyvNAXoYBi/1gt3KqN/6CZgskG7OQEufxCOWc9e4A2eWNwvkQVJvWg==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/i18n": 3.8.3(react@18.2.0) + "@react-aria/i18n": 3.8.4(react@18.2.0) "@react-aria/live-announcer": 3.3.1 - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/button": 3.9.0(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 @@ -6451,49 +6454,49 @@ packages: react: 18.2.0 dev: false - /@react-aria/switch@3.5.5(react@18.2.0): + /@react-aria/switch@3.5.6(react@18.2.0): resolution: { - integrity: sha512-5s20Jb5fYhgsctmmeydSoVB1IJmsHQ3BQ9fp4mlCr723lPMH9iEhBScCWqxi4b7DcJ9JBDUmbf65eyzh122JBQ==, + integrity: sha512-W6H/0TFa72MJY02AatUERt5HKgaDTF8lOaTjNNmS6U6U20+//uvrVCqcBof8OMe4M60mQpkp7Bd6756CJAMX1w==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/toggle": 3.8.1(react@18.2.0) + "@react-aria/toggle": 3.8.2(react@18.2.0) "@react-stately/toggle": 3.6.3(react@18.2.0) "@react-types/switch": 3.4.2(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/textfield@3.12.1(react@18.2.0): + /@react-aria/textfield@3.12.2(react@18.2.0): resolution: { - integrity: sha512-TOSpkspRvudUyYanvKjnZzj1q1MoyMUAtSDE+sn5IrB5R4XmwuIR9Wm3s8UxPJ/Wcnrb322s4k6J+7YpR5haWQ==, + integrity: sha512-wRg8LJjZV6o4S/LRFqxs5waGDTiuIa/CRN+/X37Fu7GeZFeK0IBvWjKPlXLe7gMswaFqRmTKnQCU42mzUdDK1g==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/label": 3.7.1(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/label": 3.7.2(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@react-types/textfield": 3.8.1(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-aria/toggle@3.8.1(react@18.2.0): + /@react-aria/toggle@3.8.2(react@18.2.0): resolution: { - integrity: sha512-TGJdKIVcPHVH8zJ7RRTa5bGwO1+x6Sx3CM91V9O0Fhd5PlHxfob/eTrGMOCdmPeBUMd7rRBMfmGuQnp5e6iw9A==, + integrity: sha512-0+RmlOQtyRmU+Dd9qM9od4DPpITC7jqA+n3aZn732XtCsosz5gPGbhFuLbSdWRZ42FQgqo7pZQWaDRZpJPkipA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/focus": 3.14.2(react@18.2.0) - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/focus": 3.14.3(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-stately/toggle": 3.6.3(react@18.2.0) "@react-types/checkbox": 3.5.2(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) @@ -6502,10 +6505,10 @@ packages: react: 18.2.0 dev: false - /@react-aria/utils@3.21.0(react@18.2.0): + /@react-aria/utils@3.21.1(react@18.2.0): resolution: { - integrity: sha512-0ZNaXgvbWnqqiG7FB0qhAIENN7CmBU30AnyTzz5ZZgvJexUJkhd2GMjvTqrBZ6zSjeMpUEIKg5PUA1eptGRPww==, + integrity: sha512-tySfyWHXOhd/b6JSrSOl7krngEXN3N6pi1hCAXObRu3+MZlaZOMDf/j18aoteaIF2Jpv8HMWUJUJtQKGmBJGRA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6518,16 +6521,16 @@ packages: react: 18.2.0 dev: false - /@react-aria/visually-hidden@3.8.5(react@18.2.0): + /@react-aria/visually-hidden@3.8.6(react@18.2.0): resolution: { - integrity: sha512-uJcYQ3FSuJIIvaRXrTdYl/EFMDML0WV5A8nl7IrO5AMTa2HG9CG04ufeFj2BH48gbbgzlRsiYM41SRSaKjYqBg==, + integrity: sha512-6DmS/JLbK9KgU/ClK1WjwOyvpn8HtwYn+uisMLdP7HlCm692peYOkXDR1jqYbHL4GlyLCD0JLI+/xGdVh5aR/w==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/interactions": 3.19.0(react@18.2.0) - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 clsx: 1.2.1 @@ -6691,17 +6694,17 @@ packages: react: 18.2.0 dev: false - /@react-stately/layout@3.13.2(react@18.2.0): + /@react-stately/layout@3.13.3(react@18.2.0): resolution: { - integrity: sha512-eucSC74XYhCJAUXLgj7FQgi85wXKkg3HFqanKh9qGOJGVH9vB/sbguV9syAOkeeWWfJFRMjAKSlRZOiPLG/x/A==, + integrity: sha512-AZ2Sm7iSRcRsNATXg7bjbPpZIjV3z7bHAJtICWA1wHieVVSV1FFoyDyiXdDTIOxyuGeytNPaxtGfPpFZia9Wsg==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: "@react-stately/collections": 3.10.2(react@18.2.0) "@react-stately/table": 3.11.2(react@18.2.0) - "@react-stately/virtualizer": 3.6.3(react@18.2.0) + "@react-stately/virtualizer": 3.6.4(react@18.2.0) "@react-types/grid": 3.2.2(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@react-types/table": 3.9.0(react@18.2.0) @@ -6867,29 +6870,29 @@ packages: react: 18.2.0 dev: false - /@react-stately/virtualizer@3.6.3(react@18.2.0): + /@react-stately/virtualizer@3.6.4(react@18.2.0): resolution: { - integrity: sha512-vzasjzaKSz+ViqhApvSqRlX7+hhY2uMtjZ2kbCS0U/RtxXra4m5/dD6BfsZ4hGhjQ3PBebDfP9+JvrNQn5EjFQ==, + integrity: sha512-lf3+FDRnyLyY1IhLfwA6GuE/9F3nIEc5p245NkUSN1ngKlXI5PvLHNatiVbONC3wt90abkpMK+WMhu2S/B+4lA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/utils": 3.21.0(react@18.2.0) + "@react-aria/utils": 3.21.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) "@swc/helpers": 0.5.2 react: 18.2.0 dev: false - /@react-types/breadcrumbs@3.7.0(react@18.2.0): + /@react-types/breadcrumbs@3.7.1(react@18.2.0): resolution: { - integrity: sha512-3tXkTP0kdFSufBFxUSj5Klp3mtCl/fH12IjH98RdWgzc4Rko7iuHKFG2u+RXj5t7QzUqBth5Ukub1oBz/L3KhA==, + integrity: sha512-WWC5pQdWkAzJ2hkx4w7f+waDLLvuD9vowKey+bdLoEmKvdaHNLLVUQPEyFm6SQ5+E3pNBWkNx9a+0S9iW6wa+Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-types/link": 3.5.0(react@18.2.0) + "@react-types/link": 3.5.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) react: 18.2.0 dev: false @@ -6995,15 +6998,15 @@ packages: react: 18.2.0 dev: false - /@react-types/link@3.5.0(react@18.2.0): + /@react-types/link@3.5.1(react@18.2.0): resolution: { - integrity: sha512-QK4W0k88e4omh4ekiwIqGwJARfGF/hRXQEYaD+rM7FB1NMhuVSuErj+L3kICWuka4vLC8G3lhTqR6mv6kf6WCw==, + integrity: sha512-hX2KpjB7wSuJw5Pia63+WEgEql53VfVG1Vu2cTUJDxfrgUtawwHtxB8B0K3cs3jBanq69amgAInEx0FfqYY0uQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - "@react-aria/interactions": 3.19.0(react@18.2.0) + "@react-aria/interactions": 3.19.1(react@18.2.0) "@react-types/shared": 3.21.0(react@18.2.0) react: 18.2.0 dev: false @@ -7216,18 +7219,31 @@ packages: tslib: 2.6.2 dev: false - /@sentry/browser@7.74.0: + /@sentry-internal/tracing@7.74.1: resolution: { - integrity: sha512-Njr8216Z1dFUcl6NqBOk20dssK9SjoVddY74Xq+Q4p3NfXBG3lkMcACXor7SFoJRZXq8CZWGS13Cc5KwViRw4g==, + integrity: sha512-nNaiZreQxCitG2PzYPaC7XtyA9OMsETGYMKAtiK4p62/uTmeYbsBva9BoNx1XeiHRwbrVQYRMKQ9nV5e2jS4/A==, } engines: { node: ">=8" } dependencies: - "@sentry-internal/tracing": 7.74.0 - "@sentry/core": 7.74.0 - "@sentry/replay": 7.74.0 - "@sentry/types": 7.74.0 - "@sentry/utils": 7.74.0 + "@sentry/core": 7.74.1 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 + tslib: 2.6.2 + dev: false + + /@sentry/browser@7.74.1: + resolution: + { + integrity: sha512-OYWNne/KO60lOvkIpIlJUyiJt/9j8DGI57thSDFEYSmmbNqMitczUTBOaEStouvHKyfchqLZm1CZfWKt+z0VOA==, + } + engines: { node: ">=8" } + dependencies: + "@sentry-internal/tracing": 7.74.1 + "@sentry/core": 7.74.1 + "@sentry/replay": 7.74.1 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 tslib: 2.6.2 dev: false @@ -7275,24 +7291,36 @@ packages: tslib: 2.6.2 dev: false - /@sentry/integrations@7.74.0: + /@sentry/core@7.74.1: resolution: { - integrity: sha512-O4UyxiV5wzXSDnEd9Z/SIt/5M12URWNtIJPPJjowlllzw8X9e3zBcnXmjMOLZ+mZWjQmRDjOoz3lPPQ17f7fvw==, + integrity: sha512-LvEhOSfdIvwkr+PdlrT/aA/iOLhkXrSkvjqAQyogE4ddCWeYfS0NoirxNt1EaxMBAWKhYZRqzkA7WA4LDLbzlA==, } engines: { node: ">=8" } dependencies: - "@sentry/core": 7.74.0 - "@sentry/types": 7.74.0 - "@sentry/utils": 7.74.0 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 + tslib: 2.6.2 + dev: false + + /@sentry/integrations@7.74.1: + resolution: + { + integrity: sha512-Q7chPehHpHB4WOQ1J/X6NiN2ptiqJMmxtL+6wHumzIAyrjup3c9XekR83qEs8zpqYJAlb/4MUlwd9fPbkhGXnQ==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/core": 7.74.1 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 localforage: 1.10.0 tslib: 2.6.2 dev: false - /@sentry/nextjs@7.74.0(next@13.5.4)(react@18.2.0): + /@sentry/nextjs@7.74.1(next@13.5.6)(react@18.2.0): resolution: { - integrity: sha512-ZxhlBKRV8To3NgNblJ+8RL1urDIzsdV9+8k9GZqNG5BFxLN2tJvbgHaxI7iV4E4qYpJAae379dWpvCzGWUXWkw==, + integrity: sha512-1RySEs3WBEqlpQCAFQ/XwV+oW4wEAtpYglvAyDBwPen/s6KnkkZ0za0l3Ug0O6S9HvMiNll1rPhvnkH5nM37Tg==, } engines: { node: ">=8" } peerDependencies: @@ -7304,17 +7332,18 @@ packages: optional: true dependencies: "@rollup/plugin-commonjs": 24.0.0(rollup@2.78.0) - "@sentry/core": 7.74.0 - "@sentry/integrations": 7.74.0 - "@sentry/node": 7.74.0 - "@sentry/react": 7.74.0(react@18.2.0) - "@sentry/types": 7.74.0 - "@sentry/utils": 7.74.0 - "@sentry/vercel-edge": 7.74.0 + "@sentry/core": 7.74.1 + "@sentry/integrations": 7.74.1 + "@sentry/node": 7.74.1 + "@sentry/react": 7.74.1(react@18.2.0) + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 + "@sentry/vercel-edge": 7.74.1 "@sentry/webpack-plugin": 1.20.0 chalk: 3.0.0 - next: 13.5.4(react-dom@18.2.0)(react@18.2.0)(sass@1.69.3) + next: 13.5.6(react-dom@18.2.0)(react@18.2.0)(sass@1.69.4) react: 18.2.0 + resolve: 1.22.8 rollup: 2.78.0 stacktrace-parser: 0.1.10 tslib: 2.6.2 @@ -7361,43 +7390,62 @@ packages: - supports-color dev: false - /@sentry/react@7.74.0(react@18.2.0): + /@sentry/node@7.74.1: + resolution: + { + integrity: sha512-aMUQ2LFZF64FBr+cgjAqjT4OkpYBIC9lyWI8QqjEHqNho5+LGu18/iVrJPD4fgs4UhGdCuAiQjpC36MbmnIDZA==, + } + engines: { node: ">=8" } + dependencies: + "@sentry-internal/tracing": 7.74.1 + "@sentry/core": 7.74.1 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 + cookie: 0.5.0 + https-proxy-agent: 5.0.1 + lru_map: 0.3.3 + tslib: 2.6.2 + transitivePeerDependencies: + - supports-color + dev: false + + /@sentry/react@7.74.1(react@18.2.0): resolution: { - integrity: sha512-w5VODhLM8Kva2ZscGzgwLgkAi0TY+/Ht9SxdKlGFBJU9r7LllqzuGQ5HUcw9CPsQJnrL8VNdq8ngJPE1YbAUqw==, + integrity: sha512-16oTsNi2hl/S5AL/e5bo9DQZDwXPkX0nC8ajrpU0z2pH4cwjQZUZt/9Xq1+MKqDIEZkqDcMwpTmBptOvy1Pvkw==, } engines: { node: ">=8" } peerDependencies: react: 15.x || 16.x || 17.x || 18.x dependencies: - "@sentry/browser": 7.74.0 - "@sentry/types": 7.74.0 - "@sentry/utils": 7.74.0 + "@sentry/browser": 7.74.1 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 hoist-non-react-statics: 3.3.2 react: 18.2.0 tslib: 2.6.2 dev: false - /@sentry/replay@7.74.0: + /@sentry/replay@7.74.1: resolution: { - integrity: sha512-GoYa3cHTTFVI/J1cnZ0i4X128mf/JljaswO3PWNTe2k3lSHq/LM5aV0keClRvwM0W8hlix8oOTT06nnenOUmmw==, + integrity: sha512-qmbOl+jYdyhoHFbPp9WemKx8UojID5hVmuVLxNIP0ANqAwmE9OQEK9YFg2cf7L/TpKb1tqz0qLgi5MYIdcdpgQ==, } engines: { node: ">=12" } dependencies: - "@sentry/core": 7.74.0 - "@sentry/types": 7.74.0 - "@sentry/utils": 7.74.0 + "@sentry/core": 7.74.1 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 dev: false - /@sentry/tracing@7.74.0: + /@sentry/tracing@7.74.1: resolution: { - integrity: sha512-rSFJADhh3J3zmkzJ1EXCOwS3h7F6o/lSKu7CWZSZ6k5kBvbCJ5AXvGQadhPdWPJMMcPFzCJaOyTKEPcwL4tbCw==, + integrity: sha512-YqhLMY28uukOR8FtoCMvzdzBYkTtwj/JHUensDEpTZG5OoQTjrcgttpL+WMaCBUy1MpOIo7FyLB5aoRq2U7AIA==, } engines: { node: ">=8" } dependencies: - "@sentry-internal/tracing": 7.74.0 + "@sentry-internal/tracing": 7.74.1 dev: false /@sentry/types@7.72.0: @@ -7416,6 +7464,14 @@ packages: engines: { node: ">=8" } dev: false + /@sentry/types@7.74.1: + resolution: + { + integrity: sha512-2jIuPc+YKvXqZETwr2E8VYnsH1zsSUR/wkIvg1uTVeVNyoowJv+YsOtCdeGyL2AwiotUBSPKu7O1Lz0kq5rMOQ==, + } + engines: { node: ">=8" } + dev: false + /@sentry/utils@7.72.0: resolution: { @@ -7438,16 +7494,27 @@ packages: tslib: 2.6.2 dev: false - /@sentry/vercel-edge@7.74.0: + /@sentry/utils@7.74.1: resolution: { - integrity: sha512-KU7k2GrbGNAOfia8lcGDL90EQo7jqXv8cqyeEypU+7pe9q0R6horHA9J7f0T1P0zRYlqC6ab5RAlWdDvAdUJEQ==, + integrity: sha512-qUsqufuHYcy5gFhLZslLxA5kcEOkkODITXW3c7D+x+8iP/AJqa8v8CeUCVNS7RetHCuIeWAbbTClC4c411EwQg==, } engines: { node: ">=8" } dependencies: - "@sentry/core": 7.74.0 - "@sentry/types": 7.74.0 - "@sentry/utils": 7.74.0 + "@sentry/types": 7.74.1 + tslib: 2.6.2 + dev: false + + /@sentry/vercel-edge@7.74.1: + resolution: + { + integrity: sha512-E2lTfEtDFSh57EkjVe4EcgcdjOM8UvfZVsmANBqG4bnwRKrNX9GouClzKU2Ckd5vQnOiCH9r8x2aJ/dTqyBswQ==, + } + engines: { node: ">=8" } + dependencies: + "@sentry/core": 7.74.1 + "@sentry/types": 7.74.1 + "@sentry/utils": 7.74.1 tslib: 2.6.2 dev: false @@ -7558,10 +7625,10 @@ packages: } dev: false - /@storybook/addon-actions@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-actions@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-SsqZr3js5NinKPnC8AeNI7Ij+Q6fIl9tRdRmSulEgjksjOg7E5S1/Wsn5Bb2CCgj7MaX6VxGyC7s3XskQtDiIQ==, + integrity: sha512-eeHIFpZXGyhkfmrbHRf3rndL+ppFqlKTgN74y+UfFaAWNUhV3caXxRbHV3BbcPSLkRAsNShBH9hTNTlUAHSVjA==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7572,14 +7639,14 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 @@ -7595,10 +7662,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-backgrounds@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-backgrounds@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-+LHTZB/ZYMAzkyD5ZxSriBsqmsrvIaW/Nnd/BeuXGbkrVKKqM0qAKiFZAfjc2WchA1piVNy0/1Rsf+kuYCEiJw==, + integrity: sha512-Yu/eFHZIfyAhK28GKKcIBwj/9+hRem8pSdI3N0FJuOhErmaE0zg6VDUBzkgLa/Fn9SwC5PNyAeLAtxssg1KSNg==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7609,14 +7676,14 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7626,10 +7693,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-controls@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-controls@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-4lq3sycEUIsK8SUWDYc60QgF4vV9FZZ3lDr6M7j2W9bOnvGw49d2fbdlnq+bX1ZprZZ9VgglQpBAorQB3BXZRw==, + integrity: sha512-X56Pd+0GH1A8ddVsziJQaJ8qCaxsWK0aLCKH5li9GLtnyIGHvd5+KvvfYEbjTkeJv3d9J7X0D4uTAH1/dsmI8w==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7640,16 +7707,16 @@ packages: react-dom: optional: true dependencies: - "@storybook/blocks": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/node-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/blocks": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-common": 7.5.0 + "@storybook/core-events": 7.5.0 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/node-logger": 7.5.0 + "@storybook/preview-api": 7.5.0 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7661,10 +7728,10 @@ packages: - supports-color dev: true - /@storybook/addon-docs@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-docs@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-dLaub+XWFq4hChw+xfuF9yYg0Txp77FUawKoAigccfjWXx+OOhRV3XTuAcknpXkYq94GWynHgUFXosXT9kbDNA==, + integrity: sha512-lgrum81iJT+i85kO3uOR4wR1t05x4SmJLCB2cyYohCIafiOiV4FuyYFhvT9N6UhHByOfrWgpipKgKg6zsmV2eg==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7672,19 +7739,19 @@ packages: dependencies: "@jest/transform": 29.6.4 "@mdx-js/react": 2.3.0(react@18.2.0) - "@storybook/blocks": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/csf-plugin": 7.4.6 - "@storybook/csf-tools": 7.4.6 + "@storybook/blocks": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/csf-plugin": 7.5.0 + "@storybook/csf-tools": 7.5.0 "@storybook/global": 5.0.0 "@storybook/mdx2-csf": 1.1.0 - "@storybook/node-logger": 7.4.6 - "@storybook/postinstall": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/react-dom-shim": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/node-logger": 7.5.0 + "@storybook/postinstall": 7.5.0 + "@storybook/preview-api": 7.5.0 + "@storybook/react-dom-shim": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 fs-extra: 11.1.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -7698,28 +7765,28 @@ packages: - supports-color dev: true - /@storybook/addon-essentials@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-essentials@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-dWodufrt71TK7ELkeIvVae/x4PzECUlbOm57Iqqt4yQCyR291CgvI4PjeB8un2HbpcXCGZ+N/Oj3YkytvzBi4A==, + integrity: sha512-CKPHdQBP6psTVb3NHsP8cWSUcAA4kwzT8SrJxKddn4ecqmWJWeZo5g5y3WuqVQHlv3edpluJLQYehcVibcljag==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/addon-actions": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-backgrounds": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-controls": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-docs": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-highlight": 7.4.6 - "@storybook/addon-measure": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-outline": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-toolbars": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-viewport": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.4.6 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/node-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 + "@storybook/addon-actions": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-backgrounds": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-controls": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-docs": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-highlight": 7.5.0 + "@storybook/addon-measure": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-outline": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-toolbars": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-viewport": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-common": 7.5.0 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/node-logger": 7.5.0 + "@storybook/preview-api": 7.5.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 @@ -7730,21 +7797,21 @@ packages: - supports-color dev: true - /@storybook/addon-highlight@7.4.6: + /@storybook/addon-highlight@7.5.0: resolution: { - integrity: sha512-zCufxxD2KS5VwczxfkcBxe1oR/juTTn2H1Qm8kYvWCJQx3UxzX0+G9cwafbpV7eivqaufLweEwROkH+0KjAtkQ==, + integrity: sha512-6SlEkGCZ/LnEcbN6oE2Au3fgI9VfULErWQ36bx+sV6WWTb1EoooiD7ZJJzobrcOAriSyfWoctO5DF4W+X9I8lg==, } dependencies: - "@storybook/core-events": 7.4.6 + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.4.6 + "@storybook/preview-api": 7.5.0 dev: true - /@storybook/addon-interactions@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-interactions@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-zVZYrEPZPhNrXBuPqM7HbQvr6jwsje1sbCYj3wnp83U5wjciuqrngqHIlaSZ30zOWSfRVyzbyqL+JQZKA58BNA==, + integrity: sha512-OnmFJdzoww8jhiaxY/C/tmppkMRna6f4FKrhqeBytXRai8/PmH+a6tbjrKD8ywtAIt+1MVIxY/oXxXulHtBv8Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7755,16 +7822,16 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-common": 7.5.0 + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/instrumenter": 7.4.6 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/instrumenter": 7.5.0 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 jest-mock: 27.5.1 polished: 4.2.2 react: 18.2.0 @@ -7777,10 +7844,10 @@ packages: - supports-color dev: true - /@storybook/addon-links@7.4.6(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-links@7.5.0(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-BPygElZKX+CPI9Se6GJNk1dYc5oxuhA+vHigO1tBqhiM6VkHyFP3cvezJNQvpNYhkUnu3cxnZXb3UJnlRbPY3g==, + integrity: sha512-1j0I80k8V1sSGN3faduj9uFk0ThgT4qAYyA/5q2YYA4y6V/K8ywJVOR3nv5j7ueTeBD/gUaoncn+NosusrhRNQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7791,24 +7858,24 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/core-events": 7.5.0 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/router": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/router": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 dev: true - /@storybook/addon-measure@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-measure@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-nCymMLaHnxv8TE3yEM1A9Tulb1NuRXRNmtsdHTkjv7P1aWCxZo8A/GZaottKe/GLT8jSRjZ+dnpYWrbAhw6wTQ==, + integrity: sha512-zzHrQpn+burEr37hV1QV7yA1M33wBa38dUe+RLNYkS9g22BXYYZ/uVUhljpmA9DhZCUNJqYbXWi+ad4XMPE6+Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7819,13 +7886,13 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/types": 7.5.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) tiny-invariant: 1.3.1 @@ -7834,10 +7901,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-outline@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-outline@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-errNUblRVDLpuEaHQPr/nsrnsUkD2ARmXawkRvizgDWLIDMDJYjTON3MUCaVx3x+hlZ3I6X//G5TVcma8tCc8A==, + integrity: sha512-iVcyFi2N2NEZRytUg8wSiXS9UE9wA8/prs/sIsQ7Y34vHm1UaqAd8KxCE/fhHFNYw4UyHEEDUyTfci/jNrNQYA==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7848,13 +7915,13 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/types": 7.5.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 @@ -7863,7 +7930,7 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-styling@1.3.7(@types/react-dom@18.2.13)(@types/react@18.2.28)(less@4.2.0)(postcss@8.4.31)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.88.2): + /@storybook/addon-styling@1.3.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(less@4.2.0)(postcss@8.4.31)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(webpack@5.88.2): resolution: { integrity: sha512-JSBZMOrSw/3rlq5YoEI7Qyq703KSNP0Jd+gxTWu3/tP6245mpjn2dXnR8FvqVxCi+FG4lt2kQyPzgsuwEw1SSA==, @@ -7890,7 +7957,7 @@ packages: "@babel/template": 7.22.5 "@babel/types": 7.22.11 "@storybook/api": 7.3.2(react-dom@18.2.0)(react@18.2.0) - "@storybook/components": 7.3.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + "@storybook/components": 7.3.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@storybook/core-common": 7.3.2 "@storybook/core-events": 7.3.2 "@storybook/manager-api": 7.3.2(react-dom@18.2.0)(react@18.2.0) @@ -7922,10 +7989,10 @@ packages: - typescript dev: true - /@storybook/addon-toolbars@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-toolbars@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-L9m2FBcKeteGq7qIYsMJr0LEfiH7Wdrv5IDcldZTn68eZUJTh1p4GdJZcOmzX1P5IFRr76hpu03iWsNlWQjpbQ==, + integrity: sha512-RLONWIJE7myVL3DzWZDWnnmb53C1OitCiO3mDt678xyK5ZrFCOV9cznckXASx1wNJVt3P9OOW1N2UY7wul72+Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7936,11 +8003,11 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: @@ -7948,10 +8015,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-viewport@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-viewport@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-INDtk54j7bi7NgxMfd2ATmbA0J7nAd6X8itMkLIyPuPJtx8bYHPDORyemDOd0AojgmAdTOAyUtDYdI/PFeo4Cw==, + integrity: sha512-NXnjHQFKgeFsWOaJE0fl2THgejxDqx8axy4Prtc3ePcoVa/UrMu11G3iEcCaLhDJU7RDNM6CODgifYpH6gyKWg==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7962,13 +8029,13 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) memoizerific: 1.11.3 prop-types: 15.8.1 react: 18.2.0 @@ -7998,26 +8065,26 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/blocks@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/blocks@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-HxBSAeOiTZW2jbHQlo1upRWFgoMsaAyKijUFf5MwwMNIesXCuuTGZDJ3xTABwAVLK2qC9Ektfbo0CZCiPVuDRQ==, + integrity: sha512-4poS7lQVKhitWKl0TPECMszOMtNamsbNvZdAZ188U/p1EzTrqLg+RT9HtsB8q8Y0owx29Nh5LdfhNOddpx23ig==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/components": 7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.4.6 + "@storybook/channels": 7.5.0 + "@storybook/client-logger": 7.5.0 + "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.0 "@storybook/csf": 0.1.1 - "@storybook/docs-tools": 7.4.6 + "@storybook/docs-tools": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.4.6 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.0 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 "@types/lodash": 4.14.197 color-convert: 2.0.1 dequal: 2.0.3 @@ -8039,16 +8106,16 @@ packages: - supports-color dev: true - /@storybook/builder-manager@7.4.6: + /@storybook/builder-manager@7.5.0: resolution: { - integrity: sha512-zylZCD2rmyLOOFBFmUgtJg6UNUKmRNgXiig1XApzS2TkIbTZP827DsVEUl0ey/lskCe0uArkrEBR6ICba8p/Rw==, + integrity: sha512-nj+n36i7Mds4RIyGJqvOB+Z47zfgbMes+6Gd6reT1vC22Yda5nAITnd2vxbYfv/sUPhIBBfuFZ/eogomgYCjKg==, } dependencies: "@fal-works/esbuild-plugin-global-externals": 2.1.2 - "@storybook/core-common": 7.4.6 - "@storybook/manager": 7.4.6 - "@storybook/node-logger": 7.4.6 + "@storybook/core-common": 7.5.0 + "@storybook/manager": 7.5.0 + "@storybook/node-logger": 7.5.0 "@types/ejs": 3.1.3 "@types/find-cache-dir": 3.2.1 "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.18.20) @@ -8066,15 +8133,15 @@ packages: - supports-color dev: true - /@storybook/builder-vite@7.4.6(typescript@5.2.2)(vite@4.4.11): + /@storybook/builder-vite@7.5.0(typescript@5.2.2)(vite@4.5.0): resolution: { - integrity: sha512-xV9STYK+TkqWWTf2ydm6jx+7P70fjD2UPd1XTUw08uKszIjhuuxk+bG/OF5R1E25mPunAKXm6kBFh351AKejBg==, + integrity: sha512-XqiXECAhIDhUryhcPfWfmrvCA2R9p4cebXdyH5Op17yKQ10Bp+OxDWXZlOY/PHdq2KBVhC8CF3Yp7JXCWk8BHw==, } peerDependencies: "@preact/preset-vite": "*" typescript: ">= 4.3.x" - vite: ^3.0.0 || ^4.0.0 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 vite-plugin-glimmerx: "*" peerDependenciesMeta: "@preact/preset-vite": @@ -8084,15 +8151,14 @@ packages: vite-plugin-glimmerx: optional: true dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/csf-plugin": 7.4.6 - "@storybook/mdx2-csf": 1.1.0 - "@storybook/node-logger": 7.4.6 - "@storybook/preview": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/channels": 7.5.0 + "@storybook/client-logger": 7.5.0 + "@storybook/core-common": 7.5.0 + "@storybook/csf-plugin": 7.5.0 + "@storybook/node-logger": 7.5.0 + "@storybook/preview": 7.5.0 + "@storybook/preview-api": 7.5.0 + "@storybook/types": 7.5.0 "@types/find-cache-dir": 3.2.1 browser-assert: 1.2.1 es-module-lexer: 0.9.3 @@ -8100,11 +8166,9 @@ packages: find-cache-dir: 3.3.2 fs-extra: 11.1.1 magic-string: 0.30.3 - remark-external-links: 8.0.0 - remark-slug: 6.1.0 rollup: 3.28.1 typescript: 5.2.2 - vite: 4.4.11(less@4.2.0) + vite: 4.5.0(less@4.2.0) transitivePeerDependencies: - encoding - supports-color @@ -8124,24 +8188,24 @@ packages: tiny-invariant: 1.3.1 dev: true - /@storybook/channels@7.4.6: + /@storybook/channels@7.5.0: resolution: { - integrity: sha512-yPv/sfo2c18fM3fvG0i1xse63vG8l33Al/OU0k/dtovltPu001/HVa1QgBgsb/QrEfZtvGjGhmtdVeYb39fv3A==, + integrity: sha512-/7QJS1UA7TX3uhZqCpjv4Ib8nfMnDOJrBWvjiXiUONaRcSk/he5X+W1Zz/c7dgt+wkYuAh+evjc7glIaBhVNVQ==, } dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 qs: 6.11.2 telejson: 7.2.0 tiny-invariant: 1.3.1 dev: true - /@storybook/cli@7.4.6: + /@storybook/cli@7.5.0: resolution: { - integrity: sha512-rRwaH8pOL+FHz/pJMEkNpMH2xvZvWsrl7obBYw26NQiHmiVSAkfHJicndSN1mwc+p5w+9iXthrgzbLtSAOSvkA==, + integrity: sha512-f14q6sqHhDf7bFS0o/ZTgN2tM00Q0cMGMmGFXTQSCh0HXJUS4ujy/FADL+x62wUylIdr1HkIw+ONWMMqHuenEA==, } hasBin: true dependencies: @@ -8149,14 +8213,14 @@ packages: "@babel/preset-env": 7.22.10(@babel/core@7.22.11) "@babel/types": 7.22.11 "@ndelangen/get-tarball": 3.0.9 - "@storybook/codemod": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 - "@storybook/core-server": 7.4.6 - "@storybook/csf-tools": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/telemetry": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/codemod": 7.5.0 + "@storybook/core-common": 7.5.0 + "@storybook/core-events": 7.5.0 + "@storybook/core-server": 7.5.0 + "@storybook/csf-tools": 7.5.0 + "@storybook/node-logger": 7.5.0 + "@storybook/telemetry": 7.5.0 + "@storybook/types": 7.5.0 "@types/semver": 7.5.0 "@yarnpkg/fslib": 2.10.3 "@yarnpkg/libzip": 2.3.0 @@ -8202,28 +8266,28 @@ packages: "@storybook/global": 5.0.0 dev: true - /@storybook/client-logger@7.4.6: + /@storybook/client-logger@7.5.0: resolution: { - integrity: sha512-XDw31ZziU//86PKuMRnmc+L/G0VopaGKENQOGEpvAXCU9IZASwGKlKAtcyosjrpi+ZiUXlMgUXCpXM7x3b1Ehw==, + integrity: sha512-JV7J9vc69f9Il4uW62NIeweUU7O38VwFWxtCkhd0bcBA/9RG0go4M2avzxYYEAe9kIOX9IBBk8WGzMacwW4gKQ==, } dependencies: "@storybook/global": 5.0.0 dev: true - /@storybook/codemod@7.4.6: + /@storybook/codemod@7.5.0: resolution: { - integrity: sha512-lxmwEpwksCaAq96APN2YlooSDfKjJ1vKzN5Ni2EqQzf2TEXl7XQjLacHd7OOaII1kfsy+D5gNG4N5wBo7Ub30g==, + integrity: sha512-QdjFdD1OK+LqhYwNMh60/kgSt9VZIgH2TBUeXrPlCK6gfcZBrCB0ktgtuM8Zk/ROktq09pZoVDxqFi0AbEUPew==, } dependencies: "@babel/core": 7.22.11 "@babel/preset-env": 7.22.10(@babel/core@7.22.11) "@babel/types": 7.22.11 "@storybook/csf": 0.1.1 - "@storybook/csf-tools": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/csf-tools": 7.5.0 + "@storybook/node-logger": 7.5.0 + "@storybook/types": 7.5.0 "@types/cross-spawn": 6.0.2 cross-spawn: 7.0.3 globby: 11.1.0 @@ -8235,7 +8299,7 @@ packages: - supports-color dev: true - /@storybook/components@7.3.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/components@7.3.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-hsa1OJx4yEtLHTzrCxq8G9U5MTbcTuItj9yp1gsW9RTNc/V1n/rReQv4zE/k+//2hDsLrS62o3yhZ9VksRhLNw==, @@ -8244,8 +8308,8 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) "@storybook/client-logger": 7.3.2 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 @@ -8262,22 +8326,22 @@ packages: - "@types/react-dom" dev: true - /@storybook/components@7.4.6(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /@storybook/components@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-nIRBhewAgrJJVafyCzuaLx1l+YOfvvD5dOZ0JxZsxJsefOdw1jFpUqUZ5fIpQ2moyvrR0mAUFw378rBfMdHz5Q==, + integrity: sha512-6lmZ6PbS27xN32vTJ/NvgaiKkFIQRzZuBeBIg2u+FoAEgCiCwRXjZKe/O8NZC2Xr0uf97+7U2P0kD4Hwr9SNhw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.13)(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.4.6 + "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.5.0 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8288,14 +8352,14 @@ packages: - "@types/react-dom" dev: true - /@storybook/core-client@7.4.6: + /@storybook/core-client@7.5.0: resolution: { - integrity: sha512-tfgxAHeCvMcs6DsVgtb4hQSDaCHeAPJOsoyhb47eDQfk4OmxzriM0qWucJV5DePSMi+KutX/rN2u0JxfOuN68g==, + integrity: sha512-lnlPhsHnjK3tQ6jgTL/4TqIsxqznMQ0p7lSnUfhfccc2lGtMO/Ez/xIiTGoJQssJxuJE3d4sj3wRgYvuTDGQYw==, } dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/preview-api": 7.5.0 dev: true /@storybook/core-common@7.3.2: @@ -8331,22 +8395,22 @@ packages: - supports-color dev: true - /@storybook/core-common@7.4.6: + /@storybook/core-common@7.5.0: resolution: { - integrity: sha512-05MJFmOM86qvTLtgDskokIFz9txe0Lbhq4L3by1FtF0GwgH+p+W6I94KI7c6ANER+kVZkXQZhiRzwBFnVTW+Cg==, + integrity: sha512-Gw3/rzRb5+XbwqBcr2ZNaIYGEp+WNTwaBOnMs4yp2SCrNIb0P+i3BxlVQdgABaq43EI3/bksowT6hei0jyhGhw==, } dependencies: - "@storybook/core-events": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/core-events": 7.5.0 + "@storybook/node-logger": 7.5.0 + "@storybook/types": 7.5.0 "@types/find-cache-dir": 3.2.1 - "@types/node": 16.18.44 + "@types/node": 18.18.6 "@types/node-fetch": 2.6.4 "@types/pretty-hrtime": 1.0.1 chalk: 4.1.2 esbuild: 0.18.20 - esbuild-register: 3.4.2(esbuild@0.18.20) + esbuild-register: 3.5.0(esbuild@0.18.20) file-system-cache: 2.3.0 find-cache-dir: 3.3.2 find-up: 5.0.0 @@ -8372,38 +8436,38 @@ packages: } dev: true - /@storybook/core-events@7.4.6: + /@storybook/core-events@7.5.0: resolution: { - integrity: sha512-r5vrE+32lwrJh1NGFr1a0mWjvxo7q8FXYShylcwRWpacmL5NTtLkrXOoJSeGvJ4yKNYkvxQFtOPId4lzDxa32w==, + integrity: sha512-FsD+clTzayqprbVllnL8LLch+uCslJFDgsv7Zh99/zoi7OHtHyauoCZkdLBSiDzgc84qS41dY19HqX1/y7cnOw==, } dependencies: ts-dedent: 2.2.0 dev: true - /@storybook/core-server@7.4.6: + /@storybook/core-server@7.5.0: resolution: { - integrity: sha512-jqmRTGCJ1W0WReImivkisPVaLFT5sjtLnFoAk0feHp6QS5j7EYOPN7CYzliyQmARWTLUEXOVaFf3VD6nJZQhJQ==, + integrity: sha512-7QT8uzwSJOsv9PASQ6ywepYkcEYFB7+S7Cj/0nFMh3Vl9vW96LXvEHLAo9CUhSxdEKWeTnD8DS5+j90dLhQFCA==, } dependencies: "@aw-web-design/x-default-browser": 1.4.126 "@discoveryjs/json-ext": 0.5.7 - "@storybook/builder-manager": 7.4.6 - "@storybook/channels": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/core-events": 7.4.6 + "@storybook/builder-manager": 7.5.0 + "@storybook/channels": 7.5.0 + "@storybook/core-common": 7.5.0 + "@storybook/core-events": 7.5.0 "@storybook/csf": 0.1.1 - "@storybook/csf-tools": 7.4.6 + "@storybook/csf-tools": 7.5.0 "@storybook/docs-mdx": 0.1.0 "@storybook/global": 5.0.0 - "@storybook/manager": 7.4.6 - "@storybook/node-logger": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/telemetry": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/manager": 7.5.0 + "@storybook/node-logger": 7.5.0 + "@storybook/preview-api": 7.5.0 + "@storybook/telemetry": 7.5.0 + "@storybook/types": 7.5.0 "@types/detect-port": 1.3.3 - "@types/node": 16.18.44 + "@types/node": 18.18.6 "@types/pretty-hrtime": 1.0.1 "@types/semver": 7.5.0 better-opn: 3.0.2 @@ -8435,22 +8499,22 @@ packages: - utf-8-validate dev: true - /@storybook/csf-plugin@7.4.6: + /@storybook/csf-plugin@7.5.0: resolution: { - integrity: sha512-yi7Qa4NSqKOyiJTWCxlB0ih2ijXq6oY5qZKW6MuMMBP14xJNRGLbH5KabpfXgN2T7YECcOWG1uWaGj2veJb1KA==, + integrity: sha512-kghaEFYvQISdAjQddeicSuvBFMeuuLNtpmMkuoLQzULF7e/Tws6zLCYsjGevqlnqXD0iW2XM/j9q4M5L/mWc5A==, } dependencies: - "@storybook/csf-tools": 7.4.6 + "@storybook/csf-tools": 7.5.0 unplugin: 1.4.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/csf-tools@7.4.6: + /@storybook/csf-tools@7.5.0: resolution: { - integrity: sha512-ocKpcIUtTBy6hlLY34RUFQyX403cWpB2gGfqvkHbpGe2BQj7EyV0zpWnjsfVxvw+M9OWlCdxHWDOPUgXM33ELw==, + integrity: sha512-KOHbFNSwwc7KTdNz/6yO7S2pxbr7sH6nqfolS6/l+pod45WvRH3VhyqlDIIeX7ESIhfCw87ExC96hNDL3TojCw==, } dependencies: "@babel/generator": 7.22.10 @@ -8458,7 +8522,7 @@ packages: "@babel/traverse": 7.22.11 "@babel/types": 7.22.11 "@storybook/csf": 0.1.1 - "@storybook/types": 7.4.6 + "@storybook/types": 7.5.0 fs-extra: 11.1.1 recast: 0.23.4 ts-dedent: 2.2.0 @@ -8482,15 +8546,15 @@ packages: } dev: true - /@storybook/docs-tools@7.4.6: + /@storybook/docs-tools@7.5.0: resolution: { - integrity: sha512-nZj1L/8WwKWWJ41FW4MaKGajZUtrhnr9UwflRCkQJaWhAKmDfOb5M5TqI93uCOULpFPOm5wpoMBz2IHInQ2Lrg==, + integrity: sha512-NFhqbXj6Wv5YypMwDkt0z9xcfWD7M3wZhr8Z9XcXDlUUPjBrdv0cHt3rfHwEXpTfFyunbK41KQZZ3JkjiAjgTg==, } dependencies: - "@storybook/core-common": 7.4.6 - "@storybook/preview-api": 7.4.6 - "@storybook/types": 7.4.6 + "@storybook/core-common": 7.5.0 + "@storybook/preview-api": 7.5.0 + "@storybook/types": 7.5.0 "@types/doctrine": 0.0.3 doctrine: 3.0.0 lodash: 4.17.21 @@ -8520,17 +8584,17 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/instrumenter@7.4.6: + /@storybook/instrumenter@7.5.0: resolution: { - integrity: sha512-K5atRoVFCl6HEgkSxIbwygpzgE/iROc7BrtJ3z3a7E70sanFr6Jxt6Egu6fz2QkL3ef4EWpXMnle2vhEfG29pA==, + integrity: sha512-AyutK7uxZbgaF3/Fe+XwKbNxceEThDMi+T/FVIwJ98Ju0VqoIRefg8dbm98K6XyulYyZqmdP+C1/HdNl6Gbltg==, } dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 + "@storybook/channels": 7.5.0 + "@storybook/client-logger": 7.5.0 + "@storybook/core-events": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.4.6 + "@storybook/preview-api": 7.5.0 dev: true /@storybook/manager-api@7.3.2(react-dom@18.2.0)(react@18.2.0): @@ -8561,23 +8625,23 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/manager-api@7.4.6(react-dom@18.2.0)(react@18.2.0): + /@storybook/manager-api@7.5.0(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-inrm3DIbCp8wjXSN/wK6e6i2ysQ/IEmtC7IN0OJ7vdrp+USCooPT448SQTUmVctUGCFmOU3fxXByq8g77oIi7w==, + integrity: sha512-n9EaJTThsuFiBDs+GcmNBHnvLhH0znJQprhIQqHNVnosCs/7sloYUzWZzZvPwfnfPvRR7ostEEMXvriaYXYdJQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 + "@storybook/channels": 7.5.0 + "@storybook/client-logger": 7.5.0 + "@storybook/core-events": 7.5.0 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/router": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/theming": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/router": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -8589,10 +8653,10 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/manager@7.4.6: + /@storybook/manager@7.5.0: resolution: { - integrity: sha512-kA1hUDxpn1i2SO9OinvLvVXDeL4xgJkModp+pbE8IXv4NJWReNq1ecMeQCzPLS3Sil2gnrullQ9uYXsnZ9bxxA==, + integrity: sha512-M4h4b0Y4aZ1sRGaZuJXgvPZHqu7vN/wgWB5yPcSwJqH1+DlPxYXYnPKGERgaEUUVKJV3oWQD2qZ+UpDeTgI5UQ==, } dev: true @@ -8610,17 +8674,17 @@ packages: } dev: true - /@storybook/node-logger@7.4.6: + /@storybook/node-logger@7.5.0: resolution: { - integrity: sha512-djZb310Q27GviDug1XBv0jOEDLCiwr4hhDE0aifCEKZpfNCi/EaP31nbWimFzZwxu4hE/YAPWExzScruR1zw9Q==, + integrity: sha512-Og3hdB1bjpVCXhmlhvpgVxUfCQGd0DCguXf5qhn2kX4a+D++dxJ8YqzVJ5JQCacI9bCKITV6W9JSGseWcBaXBg==, } dev: true - /@storybook/postinstall@7.4.6: + /@storybook/postinstall@7.5.0: resolution: { - integrity: sha512-TqI5BucPAGRWrkh55BYiG2/gHLFtC0In4cuu0GsUzB/1jc4i51npLRorCwhmT7r7YliGl5F7JaP0Bni/qHN3Lg==, + integrity: sha512-SHpBItwar7qDZO7BBSqTNQK0yNy+RUROZUhW6wlVvsgVhIGF1bgA4pgpW1iMyfPmmGyNekE1BJjN+v8rjq9s6A==, } dev: true @@ -8646,18 +8710,18 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview-api@7.4.6: + /@storybook/preview-api@7.5.0: resolution: { - integrity: sha512-byUS/Opt3ytWD4cWz3sNEKw5Yks8MkQgRN+GDSyIomaEAQkLAM0rchPC0MYjwCeUSecV7IIQweNX5RbV4a34BA==, + integrity: sha512-+DubgKwYFk532FKDB6sEGaG47wr0t137aIQSjbNwVmXXxj0QY0zIAThtERx7w6eHS7ZjOs6xlLEZhzC4FI525g==, } dependencies: - "@storybook/channels": 7.4.6 - "@storybook/client-logger": 7.4.6 - "@storybook/core-events": 7.4.6 + "@storybook/channels": 7.5.0 + "@storybook/client-logger": 7.5.0 + "@storybook/core-events": 7.5.0 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/types": 7.4.6 + "@storybook/types": 7.5.0 "@types/qs": 6.9.7 dequal: 2.0.3 lodash: 4.17.21 @@ -8668,17 +8732,17 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview@7.4.6: + /@storybook/preview@7.5.0: resolution: { - integrity: sha512-2RPXusJ4CTDrIipIKKvbotD7fP0+8VzoFjImunflIrzN9rni+2rq5eMjqlXAaB+77w064zIR4uDUzI9fxsMDeQ==, + integrity: sha512-KPhx43pRgIb6UhqjsF0sUG5c3GG2dwzTzjN1/sj0QbPMghZ3b7xKGrCu6VSlsXoWQtcwisMHETFnowk0Ba/AMg==, } dev: true - /@storybook/react-dom-shim@7.4.6(react-dom@18.2.0)(react@18.2.0): + /@storybook/react-dom-shim@7.5.0(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-DSq8l9FDocUF1ooVI+TF83pddj1LynE/Hv0/y8XZhc3IgJ/HkuOQuUmfz29ezgfAi9gFYUR8raTIBi3/xdoRmw==, + integrity: sha512-OzJhXg1En/9D9vKvD2t0EcYcuHFzrLTA9kEUWt/eP3Ww41kndfJoZca33JZr17iuKksVAZ8ucETMnkL3yO+ybA==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8688,28 +8752,27 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/react-vite@7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.4.11): + /@storybook/react-vite@7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.5.0): resolution: { - integrity: sha512-jkjnrf3FxzR5wcmebXRPflrsM4WIDjWyW/NVFJwxi5PeIOk7fE7/QAPrm4NFRUu2Q7DeuH3oLKsw8bigvUI9RA==, + integrity: sha512-MnXeO1P+D9l6tZoS9wvC0YwSb8Ur05haUw66I2EJgYVmszbWmAv1XI7lYmfTqBj8bfFXk4DbUdIOVvBMfmIIZg==, } engines: { node: ">=16" } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - vite: ^3.0.0 || ^4.0.0 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 dependencies: - "@joshwooding/vite-plugin-react-docgen-typescript": 0.2.1(typescript@5.2.2)(vite@4.4.11) + "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0(typescript@5.2.2)(vite@4.5.0) "@rollup/pluginutils": 5.0.3(rollup@2.78.0) - "@storybook/builder-vite": 7.4.6(typescript@5.2.2)(vite@4.4.11) - "@storybook/react": 7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) - "@vitejs/plugin-react": 3.1.0(vite@4.4.11) - ast-types: 0.14.2 + "@storybook/builder-vite": 7.5.0(typescript@5.2.2)(vite@4.5.0) + "@storybook/react": 7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) + "@vitejs/plugin-react": 3.1.0(vite@4.5.0) magic-string: 0.30.3 react: 18.2.0 - react-docgen: 6.0.0-alpha.3 + react-docgen: 6.0.4 react-dom: 18.2.0(react@18.2.0) - vite: 4.4.11(less@4.2.0) + vite: 4.5.0(less@4.2.0) transitivePeerDependencies: - "@preact/preset-vite" - encoding @@ -8719,10 +8782,10 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/react@7.4.6(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): + /@storybook/react@7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): resolution: { - integrity: sha512-w0dVo64baFFPTGpUOWFqkKsu6pQincoymegSNgqaBd5DxEyMDRiRoTWSJHMKE9BwgE8SyWhRkP1ak1mkccSOhQ==, + integrity: sha512-1oD8sYqBZwtfBKR8zZqfhjRong4wN/4PLYMzs5wl4kYugNOeauD8zWSztnIorxzDrl2yjpwnWlRy9wXN/8FI8g==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -8733,16 +8796,16 @@ packages: typescript: optional: true dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-client": 7.4.6 - "@storybook/docs-tools": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/core-client": 7.5.0 + "@storybook/docs-tools": 7.5.0 "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.4.6 - "@storybook/react-dom-shim": 7.4.6(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.4.6 + "@storybook/preview-api": 7.5.0 + "@storybook/react-dom-shim": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.0 "@types/escodegen": 0.0.6 "@types/estree": 0.0.51 - "@types/node": 16.18.44 + "@types/node": 18.18.6 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -8778,31 +8841,31 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/router@7.4.6(react-dom@18.2.0)(react@18.2.0): + /@storybook/router@7.5.0(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-Vl1esrHkcHxDKqc+HY7+6JQpBPW3zYvGk0cQ2rxVMhWdLZTAz1hss9DqzN9tFnPyfn0a1Q77EpMySkUrvWKKNQ==, + integrity: sha512-NzPwjndmOEOUL8jK5kUrSvRUIcN5Z+h+l0Z8g4I56RoEhNTcKeOW4jbcT4WKnR9H455dti8HAcTV/4x59GpgxQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/client-logger": 7.4.6 + "@storybook/client-logger": 7.5.0 memoizerific: 1.11.3 qs: 6.11.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/telemetry@7.4.6: + /@storybook/telemetry@7.5.0: resolution: { - integrity: sha512-c8p/C1NIH8EMBviZkBCx8MMDk6rrITJ+b29DEp5MaWSRlklIVyhGiC4RPIRv6sxJwlD41PnqWVFtfu2j2eXLdQ==, + integrity: sha512-dvc1cjxHYGNfLEvh8eQI/R2KtMft0kUs6TJ2uXZdIX4+WqWG6mfn75sP8eyC1tcjkdslS6AmFWTfgt9EVcIPQA==, } dependencies: - "@storybook/client-logger": 7.4.6 - "@storybook/core-common": 7.4.6 - "@storybook/csf-tools": 7.4.6 + "@storybook/client-logger": 7.5.0 + "@storybook/core-common": 7.5.0 + "@storybook/csf-tools": 7.5.0 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -8841,17 +8904,17 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/theming@7.4.6(react-dom@18.2.0)(react@18.2.0): + /@storybook/theming@7.5.0(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-HW77iJ9ptCMqhoBOYFjRQw7VBap+38fkJGHP5KylEJCyYCgIAm2dEcQmtWpMVYFssSGcb6djfbtAMhYU4TL4Iw==, + integrity: sha512-uTo97oh+pvmlfsZocFq5qae0zGo0VGk7oiBqNSSw6CiTqE1rIuSxoPrMAY+oCTWCUZV7DjONIGvpnGl2QALsAw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@storybook/client-logger": 7.4.6 + "@storybook/client-logger": 7.5.0 "@storybook/global": 5.0.0 memoizerific: 1.11.3 react: 18.2.0 @@ -8870,13 +8933,13 @@ packages: file-system-cache: 2.3.0 dev: true - /@storybook/types@7.4.6: + /@storybook/types@7.5.0: resolution: { - integrity: sha512-6QLXtMVsFZFpzPkdGWsu/iuc8na9dnS67AMOBKm5qCLPwtUJOYkwhMdFRSSeJthLRpzV7JLAL8Kwvl7MFP3QSw==, + integrity: sha512-fiOUnHKFi/UZSfvc53F0WEQCiquqcSqslL3f5EffwQRiXfeXlGavJb0kU03BO+CvOXcliRn6qKSF2dL0Rgb7Xw==, } dependencies: - "@storybook/channels": 7.4.6 + "@storybook/channels": 7.5.0 "@types/babel__core": 7.20.1 "@types/express": 4.17.19 file-system-cache: 2.3.0 @@ -9075,21 +9138,21 @@ packages: tailwindcss: 3.3.3 dev: false - /@tanstack/query-core@4.36.1: + /@tanstack/query-core@5.0.0: resolution: { - integrity: sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==, + integrity: sha512-Y1BpiA6BblJd/UlVqxEVeAG7IACn568YJuTTItAiecBI7En+33g780kg+/8lhgl+BzcUPN7o+NjBrSRGJoemyQ==, } dev: false - /@tanstack/react-query@4.36.1(react-dom@18.2.0)(react@18.2.0): + /@tanstack/react-query@5.0.0(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-y7ySVHFyyQblPl3J3eQBWpXZkliroki3ARnBKsdJchlgt7yJLRDUcf4B8soufgiYt3pEQIkBWBx1N9/ZPIeUWw==, + integrity: sha512-diQoC8FNBcO5Uf5yuaJlXthTtbO1xM8kzOX+pSBUMT9n/cqQ/u1wJGCtukvhDWA+6j07WmIj4bfqNbd2KOB6jQ==, } peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^18.0.0 + react-dom: ^18.0.0 react-native: "*" peerDependenciesMeta: react-dom: @@ -9097,10 +9160,9 @@ packages: react-native: optional: true dependencies: - "@tanstack/query-core": 4.36.1 + "@tanstack/query-core": 5.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) dev: false /@tanstack/react-table@8.10.7(react-dom@18.2.0)(react@18.2.0): @@ -9671,7 +9733,7 @@ packages: integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==, } dependencies: - "@types/connect": 3.4.36 + "@types/connect": 3.4.37 "@types/node": 20.8.6 /@types/chai-subset@1.3.3: @@ -9706,10 +9768,10 @@ packages: } dev: false - /@types/color@3.0.4: + /@types/color@3.0.5: resolution: { - integrity: sha512-OpisS4bqJJwbkkQRrMvURf3DOxBoAg9mysHYI7WgrWpSYHqHGKYBULHdz4ih77SILcLDo/zyHGFyfIl9yb8NZQ==, + integrity: sha512-T9yHCNtd8ap9L/r8KEESu5RDMLkoWXHo7dTureNoI1dbp25NsCN054vOu09iniIjR21MXUL+LU9bkIWrbyg8gg==, } dependencies: "@types/color-convert": 2.0.0 @@ -9731,10 +9793,10 @@ packages: "@types/express": 4.17.19 dev: true - /@types/connect@3.4.36: + /@types/connect@3.4.37: resolution: { - integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==, + integrity: sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==, } dependencies: "@types/node": 20.8.6 @@ -9801,6 +9863,13 @@ packages: } dev: true + /@types/doctrine@0.0.6: + resolution: + { + integrity: sha512-KlEqPtaNBHBJ2/fVA4yLdD0Tc8zw34pKU4K5SHBIEwtLJ8xxumIC1xeG+4S+/9qhVj2MqC7O3Ld8WvDG4HqlgA==, + } + dev: true + /@types/ejs@3.1.3: resolution: { @@ -9944,7 +10013,7 @@ packages: integrity: sha512-YIQtIg4PKr7ZyqNPZObpxfHsHEmuB8dXCxd6qVcGuQVDK2bpsF7bYNnBJ4Nn7giuACZg+WewExgrtAJ3XnA4Xw==, } dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 hoist-non-react-statics: 3.3.2 dev: false @@ -9954,10 +10023,10 @@ packages: integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==, } - /@types/is-hotkey@0.1.7: + /@types/is-hotkey@0.1.8: resolution: { - integrity: sha512-yB5C7zcOM7idwYZZ1wKQ3pTfjA9BbvFqRWvKB46GFddxnJtHwi/b9y84ykQtxQPg5qhdpg4Q/kWU3EGoCTmLzQ==, + integrity: sha512-4zW6OgrfVWR14IqHt32L5zpsE5IJgAu9uimQmAOFPdKPdv+M5RgXeoB2UCJZSKvVNGzUdLgbKdtCSZ66N2HdTA==, } dev: false @@ -10022,10 +10091,10 @@ packages: "@types/node": 20.8.6 dev: true - /@types/leaflet@1.9.6: + /@types/leaflet@1.9.7: resolution: { - integrity: sha512-HakGTK5LBBWegNWsAmTlG55zN1zszYec7aG47/z6SzT90bW2vqjmbqk3YKAbrtveO+G7fSTKTYqVbIwAFnTrbg==, + integrity: sha512-FOfKB1ALYUDnXkH7LfTFreWiZr9R7GErqGP+8lYQGWr2GFq5+jy3Ih0M7e9j41cvRN65kLALJ4dc43yZwyl/6g==, } dependencies: "@types/geojson": 7946.0.10 @@ -10134,6 +10203,13 @@ packages: } dev: true + /@types/node@18.18.6: + resolution: + { + integrity: sha512-wf3Vz+jCmOQ2HV1YUJuCWdL64adYxumkrxtc+H1VUQlnQI04+5HtH+qZCOE21lBE7gIrt+CwX2Wv8Acrw5Ak6w==, + } + dev: true + /@types/node@20.8.0: resolution: { @@ -10155,10 +10231,10 @@ packages: integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, } - /@types/nprogress@0.2.1: + /@types/nprogress@0.2.2: resolution: { - integrity: sha512-TYuyVnp+nOnimgdOydDIDYIxv2kSeuJZw4tF0p/KG7hpzcMF1WkHaREwM8O4blqfT1F7rq0nht6Ko2KVUfWzBA==, + integrity: sha512-2wLrSJXLztGmr7wXwM0hA/wuIOY9DznVdd+ZFofHOiXcj9JnVt+2ZeLRJ7v5ZVlmheSkUOSg3Q3O4Ce7yji79A==, } dev: false @@ -10203,13 +10279,13 @@ packages: integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, } - /@types/react-dom@18.2.13: + /@types/react-dom@18.2.14: resolution: { - integrity: sha512-eJIUv7rPP+EC45uNYp/ThhSpE16k22VJUknt5OLoH9tbXoi8bMhwLf5xRuWMywamNbWzhrSmU7IBJfPup1+3fw==, + integrity: sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==, } dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 /@types/react-transition-group@4.4.6: resolution: @@ -10217,19 +10293,26 @@ packages: integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==, } dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 dev: false - /@types/react@18.2.28: + /@types/react@18.2.29: resolution: { - integrity: sha512-ad4aa/RaaJS3hyGz0BGegdnSRXQBkd1CCYDCdNjBPg90UUpLgo+WlJqb9fMYUxtehmzF3PJaTWqRZjko6BRzBg==, + integrity: sha512-Z+ZrIRocWtdD70j45izShRwDuiB4JZqDegqMFW/I8aG5DxxLKOzVNoq62UIO82v9bdgi+DO1jvsb9sTEZUSm+Q==, } dependencies: "@types/prop-types": 15.7.5 "@types/scheduler": 0.16.3 csstype: 3.1.2 + /@types/resolve@1.20.4: + resolution: + { + integrity: sha512-BKGK0T1VgB1zD+PwQR4RRf0ais3NyvH1qjLUrHI5SEiccYaJrhLstLuoXFWJ+2Op9whGizSPUMGPJY/Qtb/A2w==, + } + dev: true + /@types/retry@0.12.0: resolution: { @@ -10278,10 +10361,10 @@ packages: "@types/node": 20.8.6 dev: true - /@types/sortablejs@1.15.3: + /@types/sortablejs@1.15.4: resolution: { - integrity: sha512-v+zh6TZP/cLeMUK0MDx1onp8e7Jk2/4iTQ7sb/n80rTAvBm14yJkpOEfJdrTCkHiF7IZbPjxGX2NRJfogRoYIg==, + integrity: sha512-7oL7CcPSfoyoNx3Ba1+79ykJzpEKVhHUyfAiN5eT/FoeDXOR3eBDLXf9ndDNuxaExmjpI+zVi2dMMuaoXUOzNA==, } dev: false @@ -10298,10 +10381,10 @@ packages: } dev: false - /@types/uuid@9.0.5: + /@types/uuid@9.0.6: resolution: { - integrity: sha512-xfHdwa1FMJ082prjSJpoEI57GZITiQz10r3vEJCHa2khEFQjKy91aWKz6+zybzssCvXUwE1LQWgWVwZ4nYUvHQ==, + integrity: sha512-BT2Krtx4xaO6iwzwMFUYvWBWkV2pr37zD68Vmp1CDV196MzczBRxuEpD6Pr395HAgebC/co7hOphs53r8V7jew==, } dev: false @@ -10498,7 +10581,7 @@ packages: } dev: false - /@vitejs/plugin-react@3.1.0(vite@4.4.11): + /@vitejs/plugin-react@3.1.0(vite@4.5.0): resolution: { integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==, @@ -10512,7 +10595,7 @@ packages: "@babel/plugin-transform-react-jsx-source": 7.22.5(@babel/core@7.22.11) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.4.11(less@4.2.0) + vite: 4.5.0(less@4.2.0) transitivePeerDependencies: - supports-color dev: true @@ -11414,16 +11497,6 @@ packages: tslib: 2.6.2 dev: false - /ast-types@0.14.2: - resolution: - { - integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==, - } - engines: { node: ">=4" } - dependencies: - tslib: 2.6.2 - dev: true - /ast-types@0.15.2: resolution: { @@ -11964,28 +12037,6 @@ packages: } engines: { node: ">= 0.8" } - /c8@7.14.0: - resolution: - { - integrity: sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==, - } - engines: { node: ">=10.12.0" } - hasBin: true - dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@istanbuljs/schema": 0.1.3 - find-up: 5.0.0 - foreground-child: 2.0.0 - istanbul-lib-coverage: 3.2.0 - istanbul-lib-report: 3.0.1 - istanbul-reports: 3.1.6 - rimraf: 3.0.2 - test-exclude: 6.0.0 - v8-to-istanbul: 9.1.0 - yargs: 16.2.0 - yargs-parser: 20.2.9 - dev: true - /c8@8.0.1: resolution: { @@ -14158,6 +14209,20 @@ packages: - supports-color dev: true + /esbuild-register@3.5.0(esbuild@0.18.20): + resolution: + { + integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==, + } + peerDependencies: + esbuild: ">=0.12 <1" + dependencies: + debug: 4.3.4 + esbuild: 0.18.20 + transitivePeerDependencies: + - supports-color + dev: true + /esbuild@0.17.19: resolution: { @@ -14271,10 +14336,10 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-config-next@13.5.4(eslint@8.51.0)(typescript@5.2.2): + /eslint-config-next@13.5.6(eslint@8.51.0)(typescript@5.2.2): resolution: { - integrity: sha512-FzQGIj4UEszRX7fcRSJK6L1LrDiVZvDFW320VVntVKh3BSU8Fb9kpaoxQx0cdFgf3MQXdeSbrCXJ/5Z/NndDkQ==, + integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==, } peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -14283,7 +14348,7 @@ packages: typescript: optional: true dependencies: - "@next/eslint-plugin-next": 13.5.4 + "@next/eslint-plugin-next": 13.5.6 "@rushstack/eslint-patch": 1.3.3 "@typescript-eslint/parser": 6.4.1(eslint@8.51.0)(typescript@5.2.2) eslint: 8.51.0 @@ -14379,6 +14444,24 @@ packages: transitivePeerDependencies: - supports-color + /eslint-plugin-deprecation@2.0.0(eslint@8.51.0)(typescript@5.2.2): + resolution: + { + integrity: sha512-OAm9Ohzbj11/ZFyICyR5N6LbOIvQMp7ZU2zI7Ej0jIc8kiGUERXPNMfw2QqqHD1ZHtjMub3yPZILovYEYucgoQ==, + } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: ^4.2.4 || ^5.0.0 + dependencies: + "@typescript-eslint/utils": 6.4.1(eslint@8.51.0)(typescript@5.2.2) + eslint: 8.51.0 + tslib: 2.6.2 + tsutils: 3.21.0(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + dev: true + /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.51.0): resolution: { @@ -14683,20 +14766,6 @@ packages: } engines: { node: ">=4.0" } - /estree-to-babel@3.2.1: - resolution: - { - integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==, - } - engines: { node: ">=8.3.0" } - dependencies: - "@babel/traverse": 7.22.11 - "@babel/types": 7.22.11 - c8: 7.14.0 - transitivePeerDependencies: - - supports-color - dev: true - /estree-walker@2.0.2: resolution: { @@ -19807,10 +19876,10 @@ packages: engines: { node: ">=10" } dev: false - /next-intl@2.20.2(next@13.4.13)(react@18.2.0): + /next-intl@2.21.0(next@13.4.13)(react@18.2.0): resolution: { - integrity: sha512-28IarFfRzuOjPo6fjAY2RMWVdeejuvzW7jzwVnBfHU6EB0GYwQPWIq1G5YK4gWb44R6dqnjjVDqphWrLwKE+Vw==, + integrity: sha512-rxyKLsBGGji9gLuNGbbMBe+7jwGYNJZhIXxsDY2esiJ/cpeTfpAq1rLjgeAs663zQE4qHbinUazULdv2QzRngA==, } engines: { node: ">=10" } peerDependencies: @@ -19821,13 +19890,13 @@ packages: negotiator: 0.6.3 next: 13.4.13(@babel/core@7.22.11)(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 - use-intl: 2.20.2(react@18.2.0) + use-intl: 2.21.0(react@18.2.0) dev: false - /next-intl@2.20.2(next@13.5.4)(react@18.2.0): + /next-intl@2.21.0(next@13.5.6)(react@18.2.0): resolution: { - integrity: sha512-28IarFfRzuOjPo6fjAY2RMWVdeejuvzW7jzwVnBfHU6EB0GYwQPWIq1G5YK4gWb44R6dqnjjVDqphWrLwKE+Vw==, + integrity: sha512-rxyKLsBGGji9gLuNGbbMBe+7jwGYNJZhIXxsDY2esiJ/cpeTfpAq1rLjgeAs663zQE4qHbinUazULdv2QzRngA==, } engines: { node: ">=10" } peerDependencies: @@ -19836,9 +19905,9 @@ packages: dependencies: "@formatjs/intl-localematcher": 0.2.32 negotiator: 0.6.3 - next: 13.5.4(react-dom@18.2.0)(react@18.2.0)(sass@1.69.3) + next: 13.5.6(react-dom@18.2.0)(react@18.2.0)(sass@1.69.4) react: 18.2.0 - use-intl: 2.20.2(react@18.2.0) + use-intl: 2.21.0(react@18.2.0) dev: false /next@13.4.13(@babel/core@7.22.11)(react-dom@18.2.0)(react@18.2.0): @@ -19884,10 +19953,10 @@ packages: - babel-plugin-macros dev: false - /next@13.5.4(react-dom@18.2.0)(react@18.2.0)(sass@1.69.3): + /next@13.5.6(react-dom@18.2.0)(react@18.2.0)(sass@1.69.4): resolution: { - integrity: sha512-+93un5S779gho8y9ASQhb/bTkQF17FNQOtXLKAj3lsNgltEcF0C5PMLLncDmH+8X1EnJH1kbqAERa29nRXqhjA==, + integrity: sha512-Y2wTcTbO4WwEsVb4A8VSnOsG1I9ok+h74q0ZdxkwM3EODqrs4pasq7O0iUxbcS9VtWMicG7f3+HAj0r1+NtKSw==, } engines: { node: ">=16.14.0" } hasBin: true @@ -19902,26 +19971,26 @@ packages: sass: optional: true dependencies: - "@next/env": 13.5.4 + "@next/env": 13.5.6 "@swc/helpers": 0.5.2 busboy: 1.6.0 caniuse-lite: 1.0.30001538 postcss: 8.4.31 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - sass: 1.69.3 + sass: 1.69.4 styled-jsx: 5.1.1(@babel/core@7.22.11)(react@18.2.0) watchpack: 2.4.0 optionalDependencies: - "@next/swc-darwin-arm64": 13.5.4 - "@next/swc-darwin-x64": 13.5.4 - "@next/swc-linux-arm64-gnu": 13.5.4 - "@next/swc-linux-arm64-musl": 13.5.4 - "@next/swc-linux-x64-gnu": 13.5.4 - "@next/swc-linux-x64-musl": 13.5.4 - "@next/swc-win32-arm64-msvc": 13.5.4 - "@next/swc-win32-ia32-msvc": 13.5.4 - "@next/swc-win32-x64-msvc": 13.5.4 + "@next/swc-darwin-arm64": 13.5.6 + "@next/swc-darwin-x64": 13.5.6 + "@next/swc-linux-arm64-gnu": 13.5.6 + "@next/swc-linux-arm64-musl": 13.5.6 + "@next/swc-linux-x64-gnu": 13.5.6 + "@next/swc-linux-x64-musl": 13.5.6 + "@next/swc-win32-arm64-msvc": 13.5.6 + "@next/swc-win32-ia32-msvc": 13.5.6 + "@next/swc-win32-x64-msvc": 13.5.6 transitivePeerDependencies: - "@babel/core" - babel-plugin-macros @@ -22016,10 +22085,10 @@ packages: react: 18.2.0 dev: false - /react-diff-viewer-continued@3.2.6(react-dom@18.2.0)(react@18.2.0): + /react-diff-viewer-continued@3.3.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-GrzyqQnjIMoej+jMjWvtVSsQqhXgzEGqpXlJ2dAGfOk7Q26qcm8Gu6xtI430PBUyZsERe8BJSQf+7VZZo8IBNQ==, + integrity: sha512-YhjWjCUq6cs8k9iErpWh/xB2jFCndigGAz2TKubdqrSTtDH5Ib+tdQgzBWVXMMqgtEwoPLi+WFmSsdSoYbDVpw==, } engines: { node: ">= 8" } peerDependencies: @@ -22051,7 +22120,7 @@ packages: dnd-core: 16.0.1 dev: false - /react-dnd@16.0.1(@types/react@18.2.28)(react@18.2.0): + /react-dnd@16.0.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-QeoM/i73HHu2XF9aKksIUuamHPDvRglEwdHL4jsp784BgUuWcg6mzfxT0QDdQz8Wj0qyRKx2eMg8iZtWvU4E2Q==, @@ -22071,7 +22140,7 @@ packages: dependencies: "@react-dnd/invariant": 4.0.2 "@react-dnd/shallowequal": 4.0.2 - "@types/react": 18.2.28 + "@types/react": 18.2.29 dnd-core: 16.0.1 fast-deep-equal: 3.1.3 hoist-non-react-statics: 3.3.2 @@ -22089,24 +22158,23 @@ packages: typescript: 5.2.2 dev: true - /react-docgen@6.0.0-alpha.3: + /react-docgen@6.0.4: resolution: { - integrity: sha512-DDLvB5EV9As1/zoUsct6Iz2Cupw9FObEGD3DMcIs3EDFIoSKyz8FZtoWj3Wj+oodrU4/NfidN0BL5yrapIcTSA==, + integrity: sha512-gF+p+1ZwC2eO66bt763Tepmh5q9kDiFIrqW3YjUV/a+L96h0m5+/wSFQoOHL2cffyrPMZMxP03IgbggJ11QbOw==, } - engines: { node: ">=12.0.0" } - hasBin: true + engines: { node: ">=14.18.0" } dependencies: "@babel/core": 7.22.11 - "@babel/generator": 7.22.10 - ast-types: 0.14.2 - commander: 2.20.3 + "@babel/traverse": 7.22.11 + "@babel/types": 7.22.11 + "@types/babel__core": 7.20.1 + "@types/babel__traverse": 7.20.1 + "@types/doctrine": 0.0.6 + "@types/resolve": 1.20.4 doctrine: 3.0.0 - estree-to-babel: 3.2.1 - neo-async: 2.6.2 - node-dir: 0.1.17 resolve: 1.22.4 - strip-indent: 3.0.0 + strip-indent: 4.0.0 transitivePeerDependencies: - supports-color dev: true @@ -22231,7 +22299,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /react-markdown@9.0.0(@types/react@18.2.28)(react@18.2.0): + /react-markdown@9.0.0(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-v6yNf3AB8GfJ8lCpUvzxAXKxgsHpdmWPlcVRQ6Nocsezp255E/IDrF31kLQsPJeB/cKto/geUwjU36wH784FCA==, @@ -22241,7 +22309,7 @@ packages: react: ">=18" dependencies: "@types/hast": 3.0.1 - "@types/react": 18.2.28 + "@types/react": 18.2.29 devlop: 1.1.0 hast-util-to-jsx-runtime: 2.2.0 html-url-attributes: 3.0.0 @@ -22265,7 +22333,7 @@ packages: engines: { node: ">=0.10.0" } dev: true - /react-remove-scroll-bar@2.3.4(@types/react@18.2.28)(react@18.2.0): + /react-remove-scroll-bar@2.3.4(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==, @@ -22278,12 +22346,12 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.28)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.29)(react@18.2.0) tslib: 2.6.2 - /react-remove-scroll@2.5.5(@types/react@18.2.28)(react@18.2.0): + /react-remove-scroll@2.5.5(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==, @@ -22296,15 +22364,15 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.28)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.28)(react@18.2.0) + react-remove-scroll-bar: 2.3.4(@types/react@18.2.29)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.29)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.2.28)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.28)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.2.29)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.29)(react@18.2.0) - /react-select@5.7.7(@types/react@18.2.28)(react-dom@18.2.0)(react@18.2.0): + /react-select@5.7.7(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-HhashZZJDRlfF/AKj0a0Lnfs3sRdw/46VJIRd8IbB9/Ovr74+ZIwkAdSBjSPXsFMG+u72c5xShqwLSKIJllzqw==, @@ -22315,7 +22383,7 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@emotion/cache": 11.11.0 - "@emotion/react": 11.11.1(@types/react@18.2.28)(react@18.2.0) + "@emotion/react": 11.11.1(@types/react@18.2.29)(react@18.2.0) "@floating-ui/dom": 1.5.1 "@types/react-transition-group": 4.4.6 memoize-one: 6.0.0 @@ -22323,12 +22391,12 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.28)(react@18.2.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.29)(react@18.2.0) transitivePeerDependencies: - "@types/react" dev: false - /react-sortablejs@6.1.4(@types/sortablejs@1.15.3)(react-dom@18.2.0)(react@18.2.0)(sortablejs@1.15.0): + /react-sortablejs@6.1.4(@types/sortablejs@1.15.4)(react-dom@18.2.0)(react@18.2.0)(sortablejs@1.15.0): resolution: { integrity: sha512-fc7cBosfhnbh53Mbm6a45W+F735jwZ1UFIYSrIqcO/gRIFoDyZeMtgKlpV4DdyQfbCzdh5LoALLTDRxhMpTyXQ==, @@ -22339,7 +22407,7 @@ packages: react-dom: ">=16.9.0" sortablejs: "1" dependencies: - "@types/sortablejs": 1.15.3 + "@types/sortablejs": 1.15.4 classnames: 2.3.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -22347,7 +22415,7 @@ packages: tiny-invariant: 1.2.0 dev: false - /react-style-singleton@2.2.1(@types/react@18.2.28)(react@18.2.0): + /react-style-singleton@2.2.1(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==, @@ -22360,7 +22428,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 @@ -22955,6 +23023,18 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + /resolve@1.22.8: + resolution: + { + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, + } + hasBin: true + dependencies: + is-core-module: 2.13.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: false + /resolve@2.0.0-next.4: resolution: { @@ -23198,10 +23278,10 @@ packages: webpack: 5.88.2(esbuild@0.17.19) dev: true - /sass@1.69.3: + /sass@1.69.4: resolution: { - integrity: sha512-X99+a2iGdXkdWn1akFPs0ZmelUzyAQfvqYc2P/MPTrJRuIRoTffGzT9W9nFqG00S+c8hXzVmgxhUuHFdrwxkhQ==, + integrity: sha512-+qEreVhqAy8o++aQfCJwp0sklr2xyEzkm9Pp/Igu9wNPoe7EZEQ8X/MBvvXggI2ql607cxKg/RKOwDj6pp2XDA==, } engines: { node: ">=14.0.0" } hasBin: true @@ -23565,7 +23645,7 @@ packages: slate: ">=0.65.3" dependencies: "@juggle/resize-observer": 3.4.0 - "@types/is-hotkey": 0.1.7 + "@types/is-hotkey": 0.1.8 "@types/lodash": 4.14.197 direction: 1.0.4 is-hotkey: 0.1.8 @@ -23991,14 +24071,14 @@ packages: } dev: true - /storybook@7.4.6: + /storybook@7.5.0: resolution: { - integrity: sha512-YkFSpnR47j5zz7yElA+2axLjXN7K7TxDGJRHHlqXmG5iQ0PXzmjrj2RxMDKFz4Ybp/QjEUoJ4rx//ESEY0Nb5A==, + integrity: sha512-dmvQNSuoHq1KrPcK8siApBi5n5reSf6RFAlLHYD+nhM+EP6SL2fXdVjP6ZynTUMRu1NQ5YR/oJhz/SsBzJNkcA==, } hasBin: true dependencies: - "@storybook/cli": 7.4.6 + "@storybook/cli": 7.5.0 transitivePeerDependencies: - bufferutil - encoding @@ -24212,6 +24292,16 @@ packages: dependencies: min-indent: 1.0.1 + /strip-indent@4.0.0: + resolution: + { + integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==, + } + engines: { node: ">=12" } + dependencies: + min-indent: 1.0.1 + dev: true + /strip-json-comments@2.0.1: resolution: { @@ -25118,6 +25208,19 @@ packages: - ts-node dev: false + /tsutils@3.21.0(typescript@5.2.2): + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: { node: ">= 6" } + peerDependencies: + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + dependencies: + tslib: 1.14.1 + typescript: 5.2.2 + dev: true + /tuf-js@1.1.7: resolution: { @@ -25794,7 +25897,7 @@ packages: } dev: false - /use-callback-ref@1.3.0(@types/react@18.2.28)(react@18.2.0): + /use-callback-ref@1.3.0(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==, @@ -25807,7 +25910,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 tslib: 2.6.2 @@ -25825,7 +25928,21 @@ packages: react: 18.2.0 dev: false - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.28)(react@18.2.0): + /use-intl@2.21.0(react@18.2.0): + resolution: + { + integrity: sha512-m0gAKo/2OHw1tJtGQV226NIIpUy4Ualf+FKa/whk7hM1W7MXQ2v8c/N54UPrSy+PvJLCrIe7aOQ5xYEmUjnztQ==, + } + engines: { node: ">=10" } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + "@formatjs/ecma402-abstract": 1.17.0 + intl-messageformat: 9.13.0 + react: 18.2.0 + dev: false + + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==, @@ -25837,7 +25954,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 dev: false @@ -25855,7 +25972,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /use-sidecar@1.1.2(@types/react@18.2.28)(react@18.2.0): + /use-sidecar@1.1.2(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==, @@ -25868,7 +25985,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.6.2 @@ -26049,7 +26166,7 @@ packages: replace-ext: 0.0.1 dev: false - /vite-node@0.34.6(@types/node@20.8.6)(sass@1.69.3): + /vite-node@0.34.6(@types/node@20.8.6)(sass@1.69.4): resolution: { integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==, @@ -26062,7 +26179,7 @@ packages: mlly: 1.4.0 pathe: 1.1.1 picocolors: 1.0.0 - vite: 4.4.11(@types/node@20.8.6)(sass@1.69.3) + vite: 4.5.0(@types/node@20.8.6)(sass@1.69.4) transitivePeerDependencies: - "@types/node" - less @@ -26074,7 +26191,7 @@ packages: - terser dev: true - /vite@4.4.11(@types/node@20.8.6)(sass@1.69.3): + /vite@4.4.11(@types/node@20.8.6)(sass@1.69.4): resolution: { integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==, @@ -26109,15 +26226,15 @@ packages: esbuild: 0.18.20 postcss: 8.4.31 rollup: 3.28.1 - sass: 1.69.3 + sass: 1.69.4 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@4.4.11(less@4.2.0): + /vite@4.4.9(@types/node@20.8.0): resolution: { - integrity: sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==, + integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==, } engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true @@ -26145,18 +26262,18 @@ packages: terser: optional: true dependencies: + "@types/node": 20.8.0 esbuild: 0.18.20 - less: 4.2.0 postcss: 8.4.31 rollup: 3.28.1 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@4.4.9(@types/node@20.8.0): + /vite@4.5.0(@types/node@20.8.6)(sass@1.69.4): resolution: { - integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==, + integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==, } engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true @@ -26184,15 +26301,55 @@ packages: terser: optional: true dependencies: - "@types/node": 20.8.0 + "@types/node": 20.8.6 esbuild: 0.18.20 postcss: 8.4.31 rollup: 3.28.1 + sass: 1.69.4 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /vite@4.5.0(less@4.2.0): + resolution: + { + integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==, + } + engines: { node: ^14.18.0 || >=16.0.0 } + hasBin: true + peerDependencies: + "@types/node": ">= 14" + 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 + dependencies: + esbuild: 0.18.20 + less: 4.2.0 + postcss: 8.4.31 + rollup: 3.28.1 optionalDependencies: fsevents: 2.3.3 dev: true - /vitest@0.34.6(sass@1.69.3): + /vitest@0.34.6(sass@1.69.4): resolution: { integrity: sha512-+5CALsOvbNKnS+ZHMXtuUC7nL8/7F1F2DnHGjSsszX8zCjWSSviphCb/NuS9Nzf4Q03KyyDRBAXhF/8lffME4Q==, @@ -26247,8 +26404,8 @@ packages: strip-literal: 1.3.0 tinybench: 2.5.0 tinypool: 0.7.0 - vite: 4.4.11(@types/node@20.8.6)(sass@1.69.3) - vite-node: 0.34.6(@types/node@20.8.6)(sass@1.69.3) + vite: 4.4.11(@types/node@20.8.6)(sass@1.69.4) + vite-node: 0.34.6(@types/node@20.8.6)(sass@1.69.4) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -26907,7 +27064,7 @@ packages: } dev: false - /zustand@4.4.3(@types/react@18.2.28)(react@18.2.0): + /zustand@4.4.3(@types/react@18.2.29)(react@18.2.0): resolution: { integrity: sha512-oRy+X3ZazZvLfmv6viIaQmtLOMeij1noakIsK/Y47PWYhT8glfXzQ4j0YcP5i0P0qI1A4rIB//SGROGyZhx91A==, @@ -26925,7 +27082,7 @@ packages: react: optional: true dependencies: - "@types/react": 18.2.28 + "@types/react": 18.2.29 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) dev: false